-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
48 lines (48 loc) · 1.01 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
{
"name": "hollodotme/crontab-validator",
"description": "A validator for crontab expressions.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Holger Woltersdorf (hollodotme)",
"email": "hw@hollo.me"
}
],
"support": {
"source": "https://github.com/hollodotme/crontab-validator"
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"tm/tooly-composer-script": "^1.0"
},
"autoload": {
"psr-4": {
"hollodotme\\CrontabValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hollodotme\\CrontabValidator\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools"
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-6.5.4.phar",
"only-dev": true
},
"coveralls": {
"url": "https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar",
"only-dev": true
}
}
}
}