Files
miniweb/composer.json
Gregory Letellier 8bd8e86748 remove src folder
2023-11-14 12:03:02 +01:00

43 lines
993 B
JSON

{
"name": "kletellier/miniweb",
"description": "Mini website template",
"type": "project",
"license": "MIT",
"require": {
"php": "~8.1",
"greg/framework": "dev-master",
"kletellier/pdowrapper": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://git.kletellier.xyz/greg/framework.git"
},
{
"type": "git",
"url": "https://git.kletellier.xyz/greg/pdowrapper.git"
}
],
"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
}
}
}