30 lines
629 B
JSON
30 lines
629 B
JSON
{
|
|
"name": "bridgeup/app",
|
|
"type": "project",
|
|
"description": "BridgeUp Application",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Config\\": "app/Config/"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"**/Database/Migrations/**"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-update-cmd": [
|
|
"@composer dump-autoload"
|
|
]
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {}
|
|
}
|
|
}
|