-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
43 lines (43 loc) · 1.25 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": "librecodecoop/dou-collector",
"description": "Coletor de dados do DOU",
"type": "library",
"keywords": ["webscraping", "symfony", "DOU"],
"license": "MIT",
"require": {
"php": ">=7.3",
"symfony/browser-kit": "^5.1",
"symfony/css-selector": "^5.1",
"symfony/http-client": "^5.1",
"symfony/console": "^5.1",
"spatie/array-to-xml": "^2.14"
},
"require-dev": {
"ext-ast": "*",
"phpunit/phpunit": "^9.3",
"vlucas/phpdotenv": "^5.2",
"php-coveralls/php-coveralls": "^2.3",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12",
"phan/phan": "^3.2"
},
"autoload": {
"psr-4": {
"DouCollector\\": "src"
}
},
"scripts" : {
"phpcs" : "phpcs --standard=PSR12 -n src",
"phpcbf" : "phpcbf --standard=PSR12 -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"
]
}
}