-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.08 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
{
"name": "carlosruesta/buscador-cursos",
"description": "estudos composer",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Carlos Ruesta",
"email": "carlos_ruesta@yahoo.es"
}
],
"require": {
"guzzlehttp/guzzle": "^6.5",
"symfony/dom-crawler": "^5.1",
"symfony/css-selector": "^5.1"
},
"autoload": {
"psr-4": {
"Alura\\BuscadorCursos\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"squizlabs/php_codesniffer": "^3.5",
"phan/phan": "^3.0"
},
"scripts": {
"test": "phpunit tests//TestBuscadorCursos.php",
"cs": "phpcs --standard=PSR12 src/",
"phan": "phan --allow-polyfill-parser",
"check": [
"@phan",
"@cs",
"@test"
],
"post-update-cmd": [
"@test"
]
},
"scripts-descriptions": {
"check": "Roda as verificações do código: PHAN, PHPCS e PHPUNIT"
},
"bin": "buscar-cursos.php"
}