-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathcomposer.json
54 lines (54 loc) · 1.18 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
{
"name": "imtigger/laravel-job-status",
"description": "Laravel Job Status",
"license": "MIT",
"authors": [
{
"name": "Tiger Fok",
"email": "[email protected]"
}
],
"keywords": [
"laravel",
"lumen",
"job",
"queue"
],
"require": {
"php": ">=7.1",
"illuminate/contracts": ">=5.5",
"illuminate/database": ">=5.5",
"illuminate/queue": ">=5.5",
"illuminate/support": ">=5.5",
"nesbot/carbon": ">=1.21",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=5.7",
"orchestra/testbench": ">=3.5",
"orchestra/database": ">=3.5",
"friendsofphp/php-cs-fixer": "^2.11"
},
"extra": {
"laravel": {
"providers": [
"Imtigger\\LaravelJobStatus\\LaravelJobStatusServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Imtigger\\LaravelJobStatus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Imtigger\\LaravelJobStatus\\Tests\\": "tests",
"Imtigger\\LaravelJobStatus\\Tests\\Data\\": "tests/_data"
}
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php_cs",
"test": "composer php-cs-fixer && vendor/bin/phpunit"
}
}