copypaste2/composer.json

60 lines
2.0 KiB
JSON
Raw Normal View History

2015-03-02 16:59:13 +00:00
{
"name": "skobkin/copypaste",
2015-03-02 16:59:13 +00:00
"license": "MIT",
"type": "project",
"description": "Online code sharing app",
2015-03-02 16:59:13 +00:00
"autoload": {
"psr-4": { "": "src/" },
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
2015-03-02 16:59:13 +00:00
},
"minimum-stability": "stable",
2015-03-02 16:59:13 +00:00
"require": {
"php": ">=7.1.0",
"symfony/symfony": "^3.4",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.4",
"symfony/monolog-bundle": "^3.1",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "^2.0",
"doctrine/doctrine-fixtures-bundle": "^2.2",
"theodordiaconu/geshi": "dev-master",
2015-03-03 20:38:52 +00:00
"theodordiaconu/geshi-bundle" : "dev-master",
"doctrine/doctrine-migrations-bundle": "^2.0",
"doctrine/annotations": "^1.3"
},"require-dev": {
"symfony/web-server-bundle": "^3.4"
2015-03-02 16:59:13 +00:00
},
"scripts": {
"symfony-scripts": [
2015-03-02 16:59:13 +00:00
"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"
],
2015-03-02 16:59:13 +00:00
"post-update-cmd": [
"@symfony-scripts"
2015-03-02 16:59:13 +00:00
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true
2015-03-02 16:59:13 +00:00
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "3.1-dev"
2015-03-02 16:59:13 +00:00
}
}
}