-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 968 Bytes
/
composer.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "gmazzap/andrew",
"description": "Proxy objects to access (dynamic and static) private properties and methods.",
"keywords": [
"proxy objects",
"unit tests"
],
"homepage": "https://github.com/Giuseppe-Mazzapica/Andrew",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Andrew\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Andrew\\Tests\\": "tests/src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "5.7.*"
},
"config": {
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}