-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·39 lines (39 loc) · 1.11 KB
/
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
{
"name": "make/accessible",
"description": "A very lightweight PHP package that let you easely access and test singleton classes and inaccessible instance members like private or protected methods and properties.",
"version": "v0.1",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/e200/MakeAccessible",
"support": {
"email": "eleandro@inbox.ru",
"issue": "https://github.com/e200/MakeAccessible/issues/new"
},
"authors": [
{
"name": "Eleandro Duzentos",
"email": "eleandro@inbox.ru",
"homepage": "https://github.com/e200",
"role": "developer"
},
{
"name": "Unity framework",
"homepage": "https://github.com/unity-framework",
"role": "organization"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"e200\\MakeAccessible\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/Classes"
}
},
"require-dev": {
"phpunit/phpunit": "^6.2"
}
}