This commit is contained in:
53
composer.json
Normal file
53
composer.json
Normal file
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"name": "armelnl/armelnet",
|
||||
"description": "Armel.nl website",
|
||||
"license": "WTFPL",
|
||||
"type": "project",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/Utility/Helpers.php"
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^8.3",
|
||||
"laminas/laminas-diactoros": "^3.3",
|
||||
"laminas/laminas-httphandlerrunner": "^2.10",
|
||||
"php-di/php-di": "^7.0",
|
||||
"league/plates": "^3.5",
|
||||
"filp/whoops": "^2.15",
|
||||
"vlucas/phpdotenv": "^5.6",
|
||||
"league/route": "^5.1",
|
||||
"symfony/var-dumper": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"friendsofphp/php-cs-fixer": "^3.63",
|
||||
"phpstan/phpstan": "^1.12",
|
||||
"rregeer/phpunit-coverage-check": "^0.3.1",
|
||||
"pestphp/pest": "^2.35"
|
||||
},
|
||||
"scripts": {
|
||||
"php-cs-fixer": [
|
||||
"vendor/bin/php-cs-fixer fix"
|
||||
],
|
||||
"phpstan": [
|
||||
"@php vendor/bin/phpstan analyse --memory-limit=-1"
|
||||
],
|
||||
"check-coverage": [
|
||||
"@php vendor/bin/coverage-check coverage.xml 100"
|
||||
],
|
||||
"test": [
|
||||
"composer phpstan",
|
||||
"composer php-cs-fixer",
|
||||
"@php vendor/bin/pest --coverage-clover=coverage.xml",
|
||||
"composer check-coverage"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user