-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.69 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
55
56
57
58
59
{
"name": "pointybeard/symphony-section-builder",
"description": "A set of classes and scripts for automating the creation and updating of sections and their fields.",
"homepage": "https://github.com/pointybeard/symphony-section-builder",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"php",
"symphony",
"symphonycms"
],
"authors": [
{
"name": "Alannah Kearney",
"email": "[email protected]",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pointybeard/symphony-section-builder/issues"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pointybeard/symphonycms.git"
}
],
"require": {
"php": ">=7.3",
"pointybeard/symphony-pdo": "~0.1.0",
"pointybeard/helpers": "~1.2.0",
"pointybeard/property-bag": "^1.0"
},
"require-dev": {
"symphonycms/symphonycms": "dev-essentials",
"squizlabs/php_codesniffer": "~3.0",
"friendsofphp/php-cs-fixer": "^2.16",
"damianopetrungaro/php-commitizen": "^0.1.2",
"php-parallel-lint/php-parallel-lint": "^1.2"
},
"autoload": {
"psr-4": {
"pointybeard\\Symphony\\": "src/"
}
},
"scripts": {
"tidy": "php-cs-fixer fix --config=.php_cs.dist -v --using-cache=no",
"tidyDry": "@tidy --dry-run",
"test": [
"parallel-lint . --exclude vendor"
]
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}