-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
58 lines (58 loc) · 1.64 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
{
"name": "pointybeard/symext-field-unique-input",
"description": "A field for Symphony CMS that enforces uniqueness",
"homepage": "https://github.com/pointybeard/symext-field-unique-input",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"php",
"field",
"symphony",
"symphonycms",
"symphony field",
"symphony extension",
"symphonycms field",
"symphonycms extension"
],
"type": "library",
"authors": [
{
"name": "Alannah Kearney",
"email": "[email protected]",
"homepage": "http://alannahkearney.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/pointybeard/symext-field-unique-input/issues"
},
"require": {
"php": ">=7.4",
"pointybeard/helpers": "^1.2.0",
"pointybeard/symphony-extended": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"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\\Extensions\\": "src/"
}
},
"scripts": {
"post-update-cmd": "mkdir -p fields",
"tidy": "php-cs-fixer fix --config=.php_cs.dist -v --using-cache=no",
"tidyDry": "@tidy --dry-run",
"test": [
"parallel-lint . --exclude vendor"
],
"clean": "rm -rf fields"
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}