-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.07 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
{
"name": "proklung/collection-extender-bundle",
"description": "Bundle with some extenders of Laravel collections.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Gavrilov Fedy",
"email": "[email protected]",
"homepage": "https://github.com/ProklUng"
}
],
"support": {
"issues": "https://github.com/ProklUng/collection.extender.bundle/issues",
"source": "https://github.com/ProklUng/collection.extender.bundle"
},
"autoload": {
"psr-4": {
"Prokl\\CollectionExtenderBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"require": {
"php": ">=7.3 || ^8.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/config": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"illuminate/support": "~5 | ~6 | ~7 | ~8"
},
"require-dev": {
"proklung/phpunit-testing-tools": "^1.0",
"icanhazstring/composer-unused": "^0.7.5"
}
}