forked from spatie/laravel-collection-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.63 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
{
"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": "freek@spatie.be",
"homepage": "https://github.com/freekmurze",
"role": "Developer"
},
{
"name": "Sebastian De Deyne",
"email": "sebastian@spatie.be",
"homepage": "https://github.com/sebastiandedeyne",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"laravel/framework": "~5.6.0|~5.7.0"
},
"require-dev": {
"amphp/parallel": "^0.2.0",
"amphp/parallel-functions": "^0.1.2",
"mockery/mockery": "^1.0",
"orchestra/testbench": "~3.6.0|~3.7.0",
"phpunit/phpunit": "^7.3",
"symfony/stopwatch": "^4.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": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\CollectionMacros\\CollectionMacroServiceProvider"
]
}
}
}