2016-09-22 13:56:57 +02:00
|
|
|
{
|
2026-04-15 18:59:52 +02:00
|
|
|
"name": "splendid-bear/mineseeker",
|
|
|
|
|
"version": "2026.2.1",
|
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
|
"author": "https://www.splendidbear.org",
|
|
|
|
|
"bugs": "https://source.splendidbear.org",
|
|
|
|
|
"description": "This is a minesweeper game that is inspired from MSN Messenger's game.",
|
|
|
|
|
"minimum-stability": "dev",
|
2026-04-14 18:54:44 +02:00
|
|
|
"type": "project",
|
2026-04-15 18:59:52 +02:00
|
|
|
"prefer-stable": true,
|
|
|
|
|
"private": true,
|
2026-04-14 18:54:44 +02:00
|
|
|
"require": {
|
|
|
|
|
"php": ">=8.5",
|
2026-04-19 22:09:03 +02:00
|
|
|
"ext-gd": "*",
|
2026-04-14 18:54:44 +02:00
|
|
|
"ext-iconv": "*",
|
|
|
|
|
"ext-json": "*",
|
2026-04-19 22:09:03 +02:00
|
|
|
"doctrine/dbal": "^4.3",
|
2026-04-20 09:05:36 +02:00
|
|
|
"doctrine/doctrine-bundle": "^3.2",
|
|
|
|
|
"doctrine/doctrine-migrations-bundle": "^4.0",
|
2026-04-19 22:09:03 +02:00
|
|
|
"doctrine/orm": "^3.5",
|
2026-04-14 18:54:44 +02:00
|
|
|
"endroid/qr-code": "^6.1",
|
2026-04-19 18:32:45 +02:00
|
|
|
"firebase/php-jwt": "^7.0",
|
2026-04-14 18:54:44 +02:00
|
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
|
|
|
"league/flysystem-bundle": "^3.6",
|
|
|
|
|
"liip/imagine-bundle": "^2.13",
|
|
|
|
|
"pentatrion/vite-bundle": "^8.2",
|
|
|
|
|
"scheb/2fa-backup-code": "^8.5",
|
|
|
|
|
"scheb/2fa-bundle": "^8.5",
|
|
|
|
|
"scheb/2fa-totp": "^8.5",
|
|
|
|
|
"symfony/console": "7.4.*",
|
|
|
|
|
"symfony/flex": "^2.10.0",
|
|
|
|
|
"symfony/form": "7.4.*",
|
|
|
|
|
"symfony/framework-bundle": "7.4.*",
|
|
|
|
|
"symfony/http-client": "7.4.*",
|
|
|
|
|
"symfony/mailer": "7.4.*",
|
|
|
|
|
"symfony/mercure": "^0.6",
|
|
|
|
|
"symfony/mercure-bundle": "*",
|
|
|
|
|
"symfony/monolog-bundle": "^3.8",
|
|
|
|
|
"symfony/security-bundle": "7.4.*",
|
|
|
|
|
"symfony/translation": "7.4.*",
|
|
|
|
|
"symfony/twig-bundle": "7.4.*",
|
|
|
|
|
"symfony/validator": "7.4.*",
|
|
|
|
|
"symfony/yaml": "7.4.*",
|
|
|
|
|
"web-auth/webauthn-framework": "^5.2"
|
|
|
|
|
},
|
|
|
|
|
"require-dev": {
|
2026-04-21 17:56:04 +02:00
|
|
|
"dama/doctrine-test-bundle": "^8.6",
|
|
|
|
|
"phpunit/phpunit": "^13.1",
|
2026-04-14 18:54:44 +02:00
|
|
|
"roave/security-advisories": "dev-master",
|
2026-04-21 17:56:04 +02:00
|
|
|
"symfony/browser-kit": "7.4.*",
|
|
|
|
|
"symfony/css-selector": "7.4.*",
|
2026-04-14 18:54:44 +02:00
|
|
|
"symfony/dotenv": "7.4.*",
|
|
|
|
|
"symfony/maker-bundle": "^1.5",
|
|
|
|
|
"symfony/stopwatch": "7.4.*",
|
2026-04-21 17:56:04 +02:00
|
|
|
"symfony/web-profiler-bundle": "7.4.*",
|
|
|
|
|
"zenstruck/foundry": "^2.9"
|
2026-04-14 18:54:44 +02:00
|
|
|
},
|
|
|
|
|
"config": {
|
|
|
|
|
"preferred-install": {
|
|
|
|
|
"*": "dist"
|
2019-10-26 18:07:36 +02:00
|
|
|
},
|
2026-04-14 18:54:44 +02:00
|
|
|
"sort-packages": true,
|
|
|
|
|
"allow-plugins": {
|
|
|
|
|
"symfony/flex": true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"App\\": "src/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"autoload-dev": {
|
|
|
|
|
"psr-4": {
|
|
|
|
|
"App\\Tests\\": "tests/"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"replace": {
|
|
|
|
|
"symfony/polyfill-iconv": "*",
|
|
|
|
|
"symfony/polyfill-ctype": "*",
|
|
|
|
|
"symfony/polyfill-php73": "*",
|
|
|
|
|
"symfony/polyfill-php72": "*",
|
|
|
|
|
"symfony/polyfill-php71": "*",
|
|
|
|
|
"symfony/polyfill-php70": "*",
|
|
|
|
|
"symfony/polyfill-php56": "*"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"auto-scripts": {
|
|
|
|
|
"cache:clear": "symfony-cmd",
|
|
|
|
|
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
|
2019-10-26 18:07:36 +02:00
|
|
|
},
|
2026-04-14 18:54:44 +02:00
|
|
|
"post-install-cmd": [
|
|
|
|
|
"@auto-scripts"
|
|
|
|
|
],
|
|
|
|
|
"post-update-cmd": [
|
|
|
|
|
"@auto-scripts"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"conflict": {
|
|
|
|
|
"symfony/symfony": "*",
|
|
|
|
|
"doctrine/persistence": "<1.3"
|
|
|
|
|
},
|
|
|
|
|
"extra": {
|
|
|
|
|
"symfony": {
|
|
|
|
|
"allow-contrib": false,
|
|
|
|
|
"require": "7.4.*"
|
2016-09-22 13:56:57 +02:00
|
|
|
}
|
2026-04-14 18:54:44 +02:00
|
|
|
}
|
2016-09-22 13:56:57 +02:00
|
|
|
}
|