-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (36 loc) · 934 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
{
"name": "vcampitelli/phpnaomorreu",
"description": "Repositório do site phpnaomorreu.com.br",
"homepage": "https://phpnaomorreu.com.br",
"type": "project",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"authors": [
{
"name": "Vinícius Campitelli",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-libxml": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "4.0.x-dev",
"phpmd/phpmd": "dev-master",
"phpstan/phpstan": "2.0.x-dev"
},
"scripts": {
"build": "php build.php",
"phpcs": "phpcs",
"phpmd": "phpmd build.php,src/ ansi phpmd.xml",
"phpstan": "phpstan analyse"
}
}