Skip to content

Commit

Permalink
Add composer.json
Browse files Browse the repository at this point in the history
As per #332
  • Loading branch information
edent committed Jul 23, 2023
1 parent 927dd4e commit d36ccfc
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions www/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"auth0/symfony": "*",
"doctrine/dbal": "*",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/migrations": "*",
"eleirbag89/mastodonbotphp": "^0.1.0",
"ferrysyahrinal/twifer": "^2.2",
"nyholm/psr7": "^1.8",
"symfony/apache-pack": "^1.0",
"symfony/cache": "6.2.*",
"symfony/console": "6.2.*",
"symfony/dotenv": "6.2.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "6.2.*",
"symfony/http-client": "6.2.*",
"symfony/mime": "6.2.*",
"symfony/runtime": "6.2.*",
"symfony/twig-bundle": "6.2.*",
"symfony/yaml": "6.2.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^3.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"composer/installers": 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": "*"
},
"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": "6.2.*"
}
}
}

0 comments on commit d36ccfc

Please sign in to comment.