forked from symphonycms/symphonycms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.61 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
49
50
51
52
53
54
{
"name": "symphonycms/symphonycms",
"description": "Fork of the official Symphony CMS 2.7.x release which includes various quality of life improvements, fixes, and feature additions.",
"homepage": "https://github.com/pointybeard/symphonycms",
"license": "MIT",
"authors": [
{
"name": "Alannah Kearney",
"email": "[email protected]",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"pointybeard/helpers": "^1.2.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"
},
"minimum-stability": "stable",
"autoload": {
"classmap": [
"symphony/content",
"symphony/lib",
"symphony/template",
"install"
],
"psr-4": {
"Symphony\\": "src"
},
"files": [
"src/Symphony/Symphony.php",
"symphony/lib/boot/preboot.php",
"symphony/lib/boot/func.utilities.php",
"symphony/lib/boot/defines.php",
"symphony/lib/toolkit/util.validators.php"
]
},
"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
}
}