-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.11 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
{
"name": "s-damian/damian-php-fw",
"description": "The Damian PHP Framework.",
"keywords": ["framework", "damian-php", "DamianPhp"],
"license": "MIT",
"authors": [
{
"name": "Stephen Damian",
"email": "contact@damian-freelance.fr",
"homepage": "https://github.com/s-damian"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "11.4.*",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"files": [
"src/DamianPhp/Support/helpers.php"
],
"psr-4" : {
"DamianPhp\\": "src/DamianPhp/"
}
},
"scripts": {
"phpstan": "php8.4 ./vendor/bin/phpstan --configuration='tools/phpstan/phpstan.neon'",
"fix-all": "php8.2 ./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php",
"fix-all-dry": "php8.2 ./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.dist.php -vv --dry-run --diff"
},
"minimum-stability": "dev",
"prefer-stable": true
}