webapp/composer.json

84 lines
2.2 KiB
JSON
Raw Normal View History

2023-12-04 19:28:33 +00:00
{
2023-12-06 23:36:42 +00:00
"name": "kevachat/webapp",
"description": "KevaChat Web Application",
2023-12-04 19:28:33 +00:00
"type": "project",
2023-12-06 23:36:42 +00:00
"license": "MIT",
2023-12-04 19:28:33 +00:00
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
2023-12-07 00:02:48 +00:00
"php": ">=8.2",
2023-12-04 19:28:33 +00:00
"ext-ctype": "*",
"ext-iconv": "*",
"clitor-is-protocol/kevacoin": "^1.0",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.0",
2024-02-17 22:57:11 +00:00
"kevachat/kevacoin": "dev-main",
2023-12-06 21:50:54 +00:00
"league/commonmark": "^2.4",
2023-12-04 19:28:33 +00:00
"symfony/console": "7.0.*",
"symfony/dotenv": "7.0.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.0.*",
2023-12-06 22:14:17 +00:00
"symfony/monolog-bundle": "^3.10",
2023-12-04 19:28:33 +00:00
"symfony/runtime": "7.0.*",
2023-12-05 15:14:07 +00:00
"symfony/translation": "7.0.*",
2023-12-05 02:15:41 +00:00
"symfony/twig-bundle": "7.0.*",
2023-12-06 21:50:54 +00:00
"symfony/yaml": "7.0.*",
"twig/extra-bundle": "^3.8",
"twig/intl-extra": "^3.8",
2023-12-06 21:50:54 +00:00
"twig/markdown-extra": "^3.8"
2023-12-04 19:28:33 +00:00
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.0.*"
}
},
"require-dev": {
"symfony/maker-bundle": "^1.54"
2023-12-04 19:28:33 +00:00
}
}