forked from spatie/laravel-collection-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "spatie/laravel-collection-macros",
"description": "A set of useful Laravel collection macros",
"keywords": [
"spatie",
"laravel-collection-macros"
],
"homepage": "https://github.com/spatie/laravel-collection-macros",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"homepage": "https://github.com/freekmurze",
"role": "Developer"
},
{
"name": "Sebastian De Deyne",
"email": "[email protected]",
"homepage": "https://github.com/sebastiandedeyne",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"illuminate/support": "^7.0"
},
"require-dev": {
"amphp/parallel": "^0.2.5",
"amphp/parallel-functions": "^0.1.3",
"friendsofphp/php-cs-fixer": "^2.16",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^5.0",
"phpunit/phpunit": "^9.0",
"symfony/stopwatch": "^5.0"
},
"suggest": {
"amphp/parallel-functions": "Required when using the parallel*-macros."
},
"autoload": {
"psr-4": {
"Spatie\\CollectionMacros\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\CollectionMacros\\Test\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\CollectionMacros\\CollectionMacroServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}