mirror of
http://124.126.16.154:8888/singularity/composer-template.git
synced 2026-01-15 00:35:08 +08:00
23 lines
456 B
JSON
23 lines
456 B
JSON
{
|
|
"name": "elliotjreed/php-package-boilperplate",
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"description": "Example PHP package.",
|
|
"autoload": {
|
|
"psr-4" : {
|
|
"Example\\" : "src/Example/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4" : {
|
|
"Tests\\Example\\" : "tests/Example/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5"
|
|
}
|
|
}
|