-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 982 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
{
"name": "tfarla/composer-template",
"description": "A template for creating composer libraries",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Farla",
"email": "thomasfarla15@gmail.com"
}
],
"scripts": {
"test": "./vendor/bin/phpunit",
"static-analysis": "vendor/bin/phpstan analyse src --level=0",
"mess-detector": "vendor/bin/phpmd ./src text cleancode,unusedcode,codesize,design,naming",
"code-sniffer": "./vendor/bin/phpcs --standard=PSR2 src",
"code-sniffer-fix": "./vendor/bin/phpcbf --standard=PSR2 src"
},
"require": {
"php": "~7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpstan/phpstan": "^0.9.2",
"php-coveralls/php-coveralls": "^2.0",
"johnkary/phpunit-speedtrap": "^3.0",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"TFarla\\ComposerTemplate\\": "src/TFarla/ComposerTemplate/"
}
}
}