-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (48 loc) · 1.4 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": "pointybeard/cron",
"description": "Commands to expose CRON like functionality via the Symphony CMS Console extension",
"homepage": "https://github.com/pointybeard/cron",
"license": "MIT",
"authors": [
{
"name": "Alannah Kearney",
"email": "[email protected]",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pointybeard/cron/issues"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"pointybeard/symphony-pdo": "~0.1.7.0",
"pointybeard/property-bag": "^1.0",
"pointybeard/helpers": "~1.2.0",
"phpunit/php-timer": "^5.0",
"pointybeard/symphony-extended": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~3.0",
"friendsofphp/php-cs-fixer": "~3.0",
"damianopetrungaro/php-commitizen": "^0.1.2",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"autoload": {
"psr-4": {
"pointybeard\\Symphony\\Extensions\\": "src/"
}
},
"scripts": {
"tidy": "php-cs-fixer fix -v --using-cache=no",
"tidyDry": "@tidy --dry-run",
"test": [
"parallel-lint . --exclude vendor"
]
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}