90 lines
1.8 KiB
JSON
90 lines
1.8 KiB
JSON
{
|
|
"name": "quintolin/website",
|
|
"description": "Website and UI for Quintolin PBBG",
|
|
"version": "0.0.1-dev",
|
|
"type": "project",
|
|
"keywords": [
|
|
"game",
|
|
"pbbg"
|
|
],
|
|
"homepage": "https://www.shintolin.com/",
|
|
"readme": "README.md",
|
|
"license": "AGPL-3.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Krzysztof Sikorski",
|
|
"homepage": "https://zerozero.pl/",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"support": {
|
|
"chat": "https://discord.gg/ZKTSKne"
|
|
},
|
|
"require": {
|
|
"php": "^8.3",
|
|
"ext-ctype": "*",
|
|
"ext-iconv": "*",
|
|
"symfony/console": "6.3.*",
|
|
"symfony/dotenv": "6.3.*",
|
|
"symfony/flex": "^2",
|
|
"symfony/framework-bundle": "6.3.*",
|
|
"symfony/runtime": "6.3.*",
|
|
"symfony/yaml": "6.3.*"
|
|
},
|
|
"conflict": {
|
|
"symfony/symfony": "*"
|
|
},
|
|
"replace": {
|
|
"symfony/polyfill-ctype": "*",
|
|
"symfony/polyfill-iconv": "*",
|
|
"symfony/polyfill-php72": "*",
|
|
"symfony/polyfill-php73": "*",
|
|
"symfony/polyfill-php74": "*",
|
|
"symfony/polyfill-php80": "*",
|
|
"symfony/polyfill-php81": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"App\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "../core"
|
|
}
|
|
],
|
|
"config": {
|
|
"allow-plugins": {
|
|
"php-http/discovery": true,
|
|
"symfony/flex": true,
|
|
"symfony/runtime": true
|
|
},
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"auto-scripts": {
|
|
"cache:clear": "symfony-cmd",
|
|
"assets:install %PUBLIC_DIR%": "symfony-cmd"
|
|
},
|
|
"post-install-cmd": [
|
|
"@auto-scripts"
|
|
],
|
|
"post-update-cmd": [
|
|
"@auto-scripts"
|
|
]
|
|
},
|
|
"extra": {
|
|
"symfony": {
|
|
"allow-contrib": false,
|
|
"require": "6.3.*"
|
|
}
|
|
}
|
|
}
|