-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.08 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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": "lin3s/cs",
"type": "library",
"description": "The coding standards in the LIN3S way",
"license": "MIT",
"authors": [
{
"name": "LIN3S",
"email": "info@lin3s.com",
"homepage": "https://lin3s.com"
}
],
"require": {
"php": "^7.1",
"allocine/twigcs": "^3.0",
"derrabus/composer-parameter-handler": "^2.1",
"lin3s/php-cs-fixer-config": "^1.0.1",
"neronmoon/scriptsdev": "0.1.1",
"phpmd/phpmd": "^2.6",
"symfony/filesystem": "^2.8 || ^3.0 || ^4.0",
"symfony/yaml": "^2.8 || ^3.0 || ^4.0"
},
"require-dev": {
"phpspec/phpspec": "^4.3"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
},
"autoload": {
"psr-4": {
"LIN3S\\CS\\": "src/LIN3S/CS/"
}
},
"scripts": {
"cs": [
"php-cs-fixer fix --config=.php_cs -v",
"php-cs-fixer fix --config=.phpspec_cs -v"
]
}
}