-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.27 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
{
"name": "orchestra/orchestra",
"description": "Orchestra is a meta package for defining, scaffolding, rapidly deploying, and re-deploying Symphony CMS builds.",
"homepage": "https://github.com/pointybeard/orchestra",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"php",
"symphony",
"symphonycms",
"orchestra"
],
"type": "library",
"authors": [
{
"name": "Alannah Kearney",
"email": "[email protected]",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pointybeard/orchestra/issues"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"damianopetrungaro/php-commitizen": "^0.1.0",
"php-parallel-lint/php-parallel-lint": "^1.0"
},
"scripts": {
"tidy": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --using-cache=no",
"tidyDry": "@tidy --dry-run",
"test": [
"parallel-lint . --exclude vendor"
]
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}