43 lines
998 B
JSON
43 lines
998 B
JSON
{
|
|
"name": "kletellier/miniweb",
|
|
"description": "Mini website template",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "~8.1",
|
|
"greg/framework": "~1.0"
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "composer",
|
|
"url": "https://git.kletellier.xyz/api/packages/greg/composer"
|
|
}
|
|
],
|
|
"require-dev": {
|
|
"squizlabs/php_codesniffer": "^3.4",
|
|
"pestphp/pest": "^1.21",
|
|
"infection/infection": "^0.26.15"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"App\\tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"infection/extension-installer": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.default', '.env');\""
|
|
]
|
|
}
|
|
}
|