-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.31 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
50
51
52
53
54
{
"name" : "lyseontech/consulta-material",
"description" : "Consulta materiais de universidades",
"license" : "MIT",
"type" : "cli-app",
"homepage" : "https://github.com/lyseontech/consulta-material",
"authors" : [{
"name" : "Vitor Mattos",
"homepage" : "https://github.com/vitormattos"
}
],
"support" : {
"source" : "https://github.com/lyseontech/consulta-material",
"issues" : "https://github.com/lyseontech/consulta-material/issues"
},
"keywords" : [
"scrapper",
"material escolar",
"escola"
],
"autoload" : {
"psr-4" : {
"ListaMaterial\\" : "src/Scraper"
}
},
"require" : {
"php" : ">=7",
"symfony/console" : "^3.2",
"league/climate": "^3.4",
"bissolli/validador-cpf-cnpj": "^1.2",
"fabpot/goutte": "^3.2"
},
"require-dev" : {
"phpunit/phpunit" : "^6.1",
"squizlabs/php_codesniffer" : "^3.0",
"overtrue/phplint" : "^0.2.1",
"phpstan/phpstan" : "^0.7.0"
},
"scripts" : {
"phpcs" : "phpcs --standard=PSR2 -n src",
"phpcbf" : "phpcbf --standard=PSR2 -n src",
"phplint" : "phplint src",
"unit" : "php -d phar.readonly=0 vendor/bin/phpunit --coverage-clover ./tests/log/clover.xml --colors=always",
"phpstan" : "vendor/bin/phpstan analyse src --level 7",
"test" : [
"@unit",
"@phpcs",
"@phplint"
]
},
"bin" : [
"bin/consulta-material"
]
}