This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
calcifer/composer.json
Tim Schumacher e44e7b6423 First take on unit tests.
Creates an event and compares the the input data with the database.

Ticket #28
2016-06-26 13:48:47 +02:00

82 lines
3 KiB
JSON
Executable file

{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-0": { "": "src/", "SymfonyStandard": "app/" }
},
"repositories": [
{
"type": "package",
"package": {
"name": "jquery/jquery",
"version": "1.10.2",
"dist": {
"url": "https://code.jquery.com/jquery-1.10.2.js",
"type": "file"
}
}
}
],
"require": {
"php": ">=5.6",
"symfony/symfony": "^2.8",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"twig/extensions": "^1.3",
"symfony/assetic-bundle": "^2.8",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^2.11",
"sensio/distribution-bundle": "^4.0",
"sensio/framework-extra-bundle": "~3.0",
"incenteev/composer-parameter-handler": "~2.1",
"jquery/jquery": "1.10.*",
"knplabs/knp-markdown-bundle": "~1.5",
"enko/ics": "~0.2",
"jbroadway/urlify" : "^1.0",
"enko/relativedateparser" : "0.5",
"sabre/vobject": "^4.1"
},
"require-dev": {
"sensio/generator-bundle": "~3.0",
"phpunit/phpunit": "^5.4",
"liip/functional-test-bundle": "^1.6",
"doctrine/doctrine-fixtures-bundle": "^2.3"
},
"scripts": {
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"post-install-cmd": [
"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::removeSymfonyStandardFiles"
],
"post-update-cmd": [
"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::removeSymfonyStandardFiles"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "2.5-dev"
}
}
}