-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
40
41
42
{
"name": "sikofitt/array-object-array",
"description": "ArrayObject class that implements array functions through __call",
"keywords": ["array", "object", "php", "magic", "call"],
"type": "library",
"require": {
"php": ">=5.3",
"symfony/polyfill-php54": "^1.2",
"symfony/polyfill-php55": "^1.2",
"symfony/polyfill-php56": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"phpunit/php-code-coverage": "~2.2",
"satooshi/php-coveralls": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "sikofitt",
"email": "[email protected]",
"homepage": "http://rewiv.com",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"Sikofitt\\Utility\\": "src/Sikofitt/Utility/"
}
},
"autoload-dev": {
"psr-4": {
"Sikofitt\\Tests\\": "tests/Sikofitt/Tests/"
}
},
"extra":{
"branch-alias": {
"dev-master": "0.1"
}
},
"minimum-stability": "stable"
}