-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "neelkanthk/laravel-schedulable",
"description": "A Laravel package to add scheduling capability in Eloquent models.",
"type": "laravel-package",
"license": "MIT",
"authors": [
{
"name": "Neelkanth Kaushik",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.2",
"laravel/framework": ">=6.0"
},
"autoload": {
"psr-4": {
"Neelkanth\\Laravel\\Schedulable\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6.0|^7.0",
"doctrine/dbal": "^4.0@dev"
},
"autoload-dev": {
"psr-4": {
"Neelkanth\\Laravel\\Schedulable\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Neelkanth\\Laravel\\Schedulable\\Providers\\SchedulableServiceProvider"
]
}
},
"scripts": {
"test": "vendor\\bin\\phpunit --testdox"
}
}