webcron/composer.json

91 lines
2.4 KiB
JSON
Raw Normal View History

2017-04-14 15:58:09 +02:00
{
2022-04-27 14:24:48 +02:00
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
2017-04-14 15:58:09 +02:00
"require": {
2022-04-27 14:24:48 +02:00
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.12",
2021-11-30 13:51:10 +01:00
"guzzlehttp/guzzle": "~7.4.0",
2022-05-02 13:25:50 +02:00
"pentatrion/vite-bundle": "^1.2",
2021-05-28 14:24:33 +02:00
"phpseclib/phpseclib": "^3.0",
2022-05-16 18:00:44 +02:00
"scienta/doctrine-json-functions": "~5.0.0",
2022-04-27 14:24:48 +02:00
"symfony/console": "6.0.*",
"symfony/dotenv": "6.0.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "6.0.*",
2022-04-28 16:25:34 +02:00
"symfony/mailer": "6.0.*",
2022-04-27 14:24:48 +02:00
"symfony/proxy-manager-bridge": "6.0.*",
"symfony/runtime": "6.0.*",
"symfony/security-bundle": "6.0.*",
2022-05-24 18:09:14 +02:00
"symfony/translation": "6.0.*",
2022-04-27 14:24:48 +02:00
"symfony/twig-bundle": "6.0.*",
"symfony/yaml": "6.0.*"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
2021-04-06 19:33:20 +02:00
},
"autoload": {
"psr-4": {
2022-04-27 14:24:48 +02:00
"App\\": "src/"
2021-04-06 19:33:20 +02:00
}
2021-05-28 14:24:33 +02:00
},
2022-04-27 14:24:48 +02:00
"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": "*"
},
"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": {
2022-05-02 13:25:50 +02:00
"allow-contrib": true,
2022-04-27 14:24:48 +02:00
"require": "6.0.*"
2021-12-23 17:22:59 +01:00
}
2022-04-27 14:24:48 +02:00
},
"require-dev": {
"symfony/debug-bundle": "6.0.*",
"symfony/maker-bundle": "^1.40",
"symfony/monolog-bundle": "^3.0",
"symfony/stopwatch": "6.0.*",
"symfony/web-profiler-bundle": "6.0.*"
2017-04-14 15:58:09 +02:00
}
}