-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.07 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
{
"name": "jfcherng-roundcube/nthu-ee",
"description": "A plugin for NTHU EE's Roundcube.",
"type": "roundcube-plugin",
"license": "MIT",
"homepage": "https://github.com/nthu-ee/webmail-roundcube-plugin-nthu-ee",
"version": "0.0.0",
"authors": [
{
"name": "Jack Cherng",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"config": {
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"scripts": {
"fix": [
"php-cs-fixer fix --verbose"
],
"lint": [
"php-cs-fixer fix --verbose --dry-run --stop-on-violation"
]
}
}