-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 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
43
44
45
{
"name": "cloudcreativity/utils-collection",
"description": "Our standard class for handling lists in PHP.",
"keywords": [
"cloudcreativity"
],
"homepage": "https://github.com/cloudcreativity/utils-collection",
"support": {
"issues": "https://github.com/cloudcreativity/utils-collection/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Cloud Creativity Ltd",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^7.0"
},
"autoload": {
"psr-4": {
"CloudCreativity\\Utils\\Collection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CloudCreativity\\Utils\\Collection\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}