-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (35 loc) · 925 Bytes
/
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
{
"require": {
"symfony/css-selector": "^6.0",
"guzzlehttp/guzzle": "^7.8",
"symfony/dom-crawler": "^6.0"
},
"autoload": {
"files":[
"./functions.php"
],
"psr-4": {
"Alura\\BuscadorDeCursos\\" : "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer_tests": "*",
"squizlabs/php_codesniffer": "^2.9",
"phan/phan": "^5.4"
},
"scripts": {
"test": "phpunit tests//TestBuscadorDeCursos.php",
"cs": "phpcs --standard=PSR12 src/",
"phan": "phan --allow-polyfill-parser",
"check": [
"@test"
],
"post-update-cmd": [
"@test"
]
},
"scripts-descriptions": {
"check": "Roda as verificações do código. PHAN, PHPCS e PHPUNIT"
}
}