-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 782 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "achal-aggarwal/native-php",
"type": "library",
"description": "Creates stub of PHP native functions.",
"keywords": ["Mock", "native", "php", "functions"],
"homepage": "https://github.com/Achal-Aggarwal/native-php",
"license": "GPL-2.0+",
"require": {
"php": ">=5.3.10"
},
"autoload": {
"files" : ["src/helpers.php"],
"psr-4": {
"NativePHP\\": "src/",
"NativePHP\\Example\\": "example/"
}
},
"authors": [
{
"name": "Achal Aggarwal",
"email": "theachalaggarwal@gmail.com",
"homepage": "http://www.achalaggarwal.net",
"role": "Developer"
}
],
"require-dev": {
"phpunit/phpunit": "^5.7"
}
}