This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 2.72 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "bbc/programmes-clifton",
"license": "Apache-2.0",
"type": "project",
"description": "The Bridge between ProgrammesDB and Forge /programmes",
"autoload": {
"psr-4": { "BBC\\CliftonBundle\\": "src" },
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"autoload-dev": {
"psr-4": { "Tests\\BBC\\CliftonBundle\\": "tests" }
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:bbc/programmes-pages-service.git"
},
{
"type": "vcs",
"url": "git@github.com:bbc/programmes-caching-library.git"
},
{
"type": "vcs",
"url": "git@github.com:bbc/rmp-monitoringhandler.git"
},
{
"type": "vcs",
"url": "git@github.com:bbc/DoctrineExtensions.git"
}
],
"require": {
"php": ">=7.1.0",
"aws/aws-sdk-php": "^3.0",
"bbc-rmp/cloudwatch-monitoringhandler": "^1.0",
"bbc/programmes-pages-service": "^10.0",
"doctrine/doctrine-bundle": "^1.8",
"doctrine/orm": "2.6.*",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/doctrine-fixtures-bundle": "~2.2",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0",
"stof/doctrine-extensions-bundle": "^1.2",
"symfony/monolog-bundle": "^3.0.1",
"symfony/symfony": "^3.4.27"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "~2.0",
"liip/functional-test-bundle": "^1.7",
"phpstan/phpstan": "^0.8.0",
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^2.9",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"platform": {
"php": "7.1.0"
},
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "app",
"symfony-var-dir": "tmp",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}