-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1 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
{
"name": "hgf777-br/buscador-cursos",
"description": "Programa para buscar os cursos no site da Alura",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "hgf777-br",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^7.1",
"symfony/dom-crawler": "^5.1",
"symfony/css-selector": "^5.1"
},
"autoload": {
"psr-4": {
"Inove\\": "src\\"
}
},
"require-dev": {
"phpunit/phpunit": "9",
"squizlabs/php_codesniffer": "^3.5",
"phan/phan": "^3.2"
},
"scripts": {
"teste": "phpunit tests\\TestBuscadorDeCursos.php",
"cs": "phpcs --standard=PSR12 src\\",
"phan": "phan --allow-polyfill-parser",
"check": [
"@phan",
"@cs",
"@teste"
]
},
"scripts-descriptions": {
"check": "Roda todos os testes no nosso código"
},
"bin": ["buscar_cursos.php"]
}