generated from descom-es/php-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.05 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": "descom/dev",
"description": "Package to PHP Developer projects in Descom.es",
"type": "library",
"keywords": [
"dev"
],
"require": {
"php": "^8.2"
},
"homepage": "https://github.com/descom-es/php-dev",
"license": "MIT",
"authors": [
{
"name": "Cesar Garcia",
"email": "cesar@descom.es",
"role": "Developer"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.35",
"phpunit/phpunit": "^9.5|^10.0|^10.5",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Descom\\Dev\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"style": "vendor/bin/php-cs-fixer fix"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Required to apply styles"
}
}