-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
42 lines (42 loc) · 1017 Bytes
/
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": "mybuilder/cronos",
"description": "Configure Cron task through PHP",
"keywords": ["php", "cron"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Gavin Love",
"homepage": "https://www.mybuilder.com"
},
{
"name": "Keyvan Akbary",
"homepage": "https://www.mybuilder.com"
}
],
"require": {
"php": ">=8.0.2",
"symfony/process": "^4.4|^5.4|^6.0"
},
"suggest": {
"symfony/filesystem": "Allows using Symfony Filesystem"
},
"require-dev": {
"symfony/filesystem": "^4.4|^5.4|^6.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": { "MyBuilder\\Cronos\\": "src" }
},
"autoload-dev": {
"psr-4": { "MyBuilder\\Cronos\\Tests\\": "tests/" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}