-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
49 lines (49 loc) · 1.3 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
{
"name": "librecodecoop/queridodiariophp",
"description": "Brazilian government gazettes, accessible to everyone.",
"type": "project",
"license": "AGPL-3.0+",
"authors": [
{
"name": "Vitor Mattos",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"robmorgan/phinx": "^0.12.4",
"symfony/console": "^5.1"
},
"require-dev": {
"ext-ast": "*",
"phpunit/phpunit": "^9.4",
"phan/phan": "^3.2",
"phpstan/phpstan": "^0.12.48",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"QueridoDiario\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QueridoDiario\\Tests\\": "tests/"
}
},
"scripts" : {
"phpcs" : "phpcs --standard=PSR2 -n src",
"phpcbf" : "phpcbf --standard=PSR2 -n src",
"unit" : "phpunit --coverage-clover ./tests/log/clover.xml --colors=always",
"unit-html" : "phpunit --coverage-html ./tests/log/ --colors=always",
"phpstan" : "phpstan analyse src --level 7",
"phan" : "phan",
"test" : [
"@phpstan",
"@unit",
"@phpcs",
"@phan"
]
}
}