-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
36 lines (36 loc) · 904 Bytes
/
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
{
"name": "rafaelgou/padl",
"description": "PHP Aplication Distribution Licensing",
"type": "project",
"license": "LGPL",
"authors": [
{
"name": "Rafael Goulart",
"email": "[email protected]"
},
{
"name": "Oliver Lillie",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"": "src/",
"Padl\\": "Padl/"
}
},
"require": {},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^2.9",
"cvuorinen/phpdoc-markdown-public": "^0.1.2"
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard",
"./vendor/bin/phpcs --standard=Symfony2 src"
],
"phpdoc": [
"./vendor/bin/phpdoc"
]
}
}