-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
composer.json
70 lines (70 loc) · 1.92 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
67
68
69
70
{
"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": "^8.2",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"amphp/parallel": "^1.4.3|^2.2",
"amphp/parallel-functions": "^1.1.0|^2.0",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.5.9|^9.0",
"pestphp/pest": "^2.0",
"phpunit/phpunit": "10.2.2|^10.5",
"spatie/laravel-ray": "^1.32.5",
"symfony/stopwatch": "^6.3|^7.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/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Spatie\\CollectionMacros\\CollectionMacroServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}