doughnut-wedding/composer.json

105 lines
3.8 KiB
JSON
Raw Normal View History

2017-02-07 13:17:46 -08:00
{
2017-03-29 09:24:59 -07:00
"name": "symfony/framework-standard-edition",
"license": "MIT",
2017-02-07 13:17:46 -08:00
"type": "project",
2017-03-29 09:24:59 -07:00
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-4": { "Sikofitt\\": "src/Sikofitt/" },
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" },
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
2017-02-07 13:17:46 -08:00
"require": {
2017-03-29 09:24:59 -07:00
"php": ">=7.1",
"bramus/monolog-colored-line-formatter": "^2.0",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.3",
2017-02-07 13:17:46 -08:00
"doctrine/orm": "^2.5",
2017-02-10 21:34:31 -08:00
"egulias/email-validator": "^2.1",
2017-04-09 18:08:01 -07:00
"friendsofsymfony/user-bundle": "^2.0",
2017-04-22 12:43:30 -07:00
"google/apiclient": "^2.1",
2017-02-10 21:34:31 -08:00
"google/recaptcha": "^1.1",
2017-04-09 18:08:01 -07:00
"hwi/oauth-bundle": "^0.5.3",
2017-03-29 09:24:59 -07:00
"incenteev/composer-parameter-handler": "^2.0",
2017-02-10 21:34:31 -08:00
"ircmaxell/random-lib": "^1.2",
"ircmaxell/security-lib": "^1.1",
2017-03-29 09:24:59 -07:00
"j-ben87/parsley-bundle": "^1.4",
"javiereguiluz/easyadmin-bundle": "^1.16",
2017-04-22 12:43:30 -07:00
"knplabs/knp-gaufrette-bundle": "^0.4.0",
2017-03-29 09:24:59 -07:00
"lexik/translation-bundle": "^4.0",
"lightsaml/sp-bundle": "^1.1",
"moontoast/math": "^1.1",
2017-02-10 21:34:31 -08:00
"paragonie/cookie": "^3.1",
"paragonie/csp-builder": "^2.0",
2017-03-29 09:24:59 -07:00
"paragonie/sodium_compat": "^0.6.0",
"predis/predis": "^1.1",
"psr/http-message": "^1.0",
2017-04-22 12:43:30 -07:00
"ramsey/uuid": "^3.6",
2017-03-29 09:24:59 -07:00
"ramsey/uuid-doctrine": "^1.2",
"ravenberg/uikit-bundle": "^1.0",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"snc/redis-bundle": "^2.0",
2017-03-29 09:24:59 -07:00
"symfony/monolog-bundle": "^3.0.2",
"symfony/polyfill-apcu": "^1.0",
"symfony/security": "^3.2",
2017-02-10 21:34:31 -08:00
"symfony/security-csrf": "^3.2",
"symfony/security-guard": "^3.2",
"symfony/security-http": "^3.2",
2017-03-29 09:24:59 -07:00
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/symfony": "3.2.*",
2017-02-07 13:48:15 -08:00
"tedivm/stash": "^0.14.1",
"tedivm/stash-bundle": "^0.6.2",
2017-02-10 21:34:31 -08:00
"twig/extensions": "^1.4",
2017-04-22 20:58:42 -07:00
"twig/twig": "^1.0||^2.0",
"vich/uploader-bundle": "^1.5"
2017-02-07 13:17:46 -08:00
},
"require-dev": {
2017-03-29 09:24:59 -07:00
"doctrine/doctrine-fixtures-bundle": "^2.3",
"friendsofphp/php-cs-fixer": "^2.1",
2017-02-07 13:54:24 -08:00
"fzaninotto/faker": "^1.6",
2017-03-29 09:24:59 -07:00
"sensio/generator-bundle": "^3.0",
2017-03-29 08:28:00 -07:00
"symfony/debug-bundle": "^3.2",
2017-03-29 09:24:59 -07:00
"symfony/phpunit-bridge": "^3.0",
2017-02-10 21:34:31 -08:00
"symfony/var-dumper": "^3.2"
2017-02-07 13:17:46 -08:00
},
2017-03-29 09:24:59 -07:00
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"platform": {
"php": "7.1.3"
2017-02-10 21:34:31 -08:00
},
2017-03-29 09:24:59 -07:00
"sort-packages": true
2017-02-07 13:48:15 -08:00
},
2017-03-29 09:24:59 -07:00
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "3.2-dev"
2017-02-07 13:17:46 -08:00
}
2017-03-29 09:24:59 -07:00
}
2017-02-07 13:17:46 -08:00
}