-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.43 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
{
"name": "skywarth/chaotic-schedule",
"description": "Randomize scheduled command execution time and date intervals",
"keywords": ["laravel","schedule","random-schedule","command","prng","random","laravel-random","random-interval","random-frequency"],
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Skywarth\\ChaoticSchedule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Skywarth\\ChaoticSchedule\\Tests\\": "tests"
}
},
"authors": [
{
"name": "skywarth",
"email": "yigitk.ersoy@gmail.com"
}
],
"require-dev": {
"orchestra/testbench": "^6.28",
"phpunit/phpunit": "^9.6"
},
"extra": {
"laravel": {
"providers": [
"Skywarth\\ChaoticSchedule\\Providers\\RNGFactoryServiceProvider",
"Skywarth\\ChaoticSchedule\\Providers\\SeedGenerationServiceProvider",
"Skywarth\\ChaoticSchedule\\Providers\\ChaoticScheduleServiceProvider"
]
}
},
"scripts": {
"test":"./vendor/bin/phpunit",
"test-random-time-macros":"@test --filter RandomTimeMacros",
"test-random-date-macros":"@test --filter RandomDateMacrosTest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"paragonie/seedspring": "^1.2"
}
}