-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
49 lines (49 loc) · 1.26 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
{
"name": "robersonfaria/laravel-database-schedule",
"description": "Manage your Laravel Task Scheduling in a friendly interface and save schedules to the database.",
"keywords": [
"laravel",
"schedule",
"task",
"jobs"
],
"license": "MIT",
"require": {
"php": "^7.2|^8.0",
"laravel/framework": "^5.8|6.*|7.*|8.*|9.*|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5.10|^10.5",
"orchestra/testbench": "^5.20|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.6"
},
"authors": [
{
"name": "Roberson Faria",
"email": "roberson.faria@gmail.com"
}
],
"autoload": {
"psr-4": {
"RobersonFaria\\DatabaseSchedule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RobersonFaria\\DatabaseSchedule\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"RobersonFaria\\DatabaseSchedule\\DatabaseSchedulingServiceProvider"
]
}
},
"scripts": {
"phpcs": "./vendor/bin/phpcs .",
"tests": "./vendor/bin/phpunit ./tests"
},
"minimum-stability": "dev",
"prefer-stable": true
}