mince/composer.json

31 lines
633 B
JSON
Raw Normal View History

2023-08-16 21:18:12 +00:00
{
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
2023-08-16 22:39:35 +00:00
"flashwave/index": "*",
"flashwave/sasae": "dev-master",
"flashwave/syokuhou": "dev-master",
2023-12-15 02:15:40 +00:00
"ramsey/uuid": "^4.7",
"sentry/sdk": "^4.0"
2023-08-16 21:18:12 +00:00
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Mince\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"./tools/migrate"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true
}
}
}