-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.13 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
46
{
"name": "camelot/collection",
"description": "Object Orientated implementations of various collections",
"license": "MIT",
"authors": [
{
"name": "Carson Full",
"email": "[email protected]"
},
{
"name": "Gawain Lynch",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3 || ^8.0",
"camelot/common": "^1.0 || ^2.0",
"ext-json": "*",
"symfony/polyfill-php71": "^1.3",
"webmozart/assert": "^1.10"
},
"require-dev": {
"camelot/coding-style": "^3.0",
"escapestudios/symfony2-coding-standard": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.3"
},
"autoload": {
"psr-4": {
"Camelot\\Collection\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Camelot\\Collection\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"lint": [
"phpcbf",
"php-cs-fixer fix"
]
}
}