This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
108 lines (108 loc) · 3.91 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "retext/hub",
"license": "MIT",
"type": "project",
"homepage": "https://github.com/retext/hub",
"autoload": {
"psr-0": {"": "src/"}
},
"require": {
"php": ">=5.5.0",
"symfony/symfony": "2.3.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.2.*",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.3.*",
"sensio/distribution-bundle": "2.3.*",
"sensio/framework-extra-bundle": "2.3.*",
"incenteev/composer-parameter-handler": "~2.0",
"symfony/console": "2.3.*",
"jms/serializer-bundle": "0.12.*@dev",
"gedmo/doctrine-extensions": "dev-master@dev",
"doctrine/doctrine-cache-bundle": "1.0.x",
"dothiv/dothiv-parsedown-bundle": "dev-master",
"cocur/slugify": "@stable",
"behat/common-contexts": "1.2.*@dev",
"doctrine/doctrine-fixtures-bundle": "2.2.*@dev",
"stof/doctrine-extensions-bundle": "1.1.x",
"nelmio/cors-bundle": "~1.0",
"doctrine/migrations": "1.0.*@dev",
"doctrine/doctrine-migrations-bundle": "2.1.*@dev",
"components/angular.js": "1.2.x",
"components/jquery": "1.x",
"component/angular-ui-router": "0.2.11",
"angular-ui/bootstrap": "dev-master@dev",
"dothiv/dothiv-valueobject-bundle": "dev-master"
},
"require-dev": {
"sensio/generator-bundle": "2.3.*",
"phploc/phploc": "*",
"pdepend/pdepend": "*",
"phpmd/phpmd": "*",
"squizlabs/php_codesniffer": "*",
"sebastian/phpcpd": "*",
"covex-nn/phpcb": "*",
"phpunit/phpunit": "*",
"behat/symfony2-extension": "1.*@dev",
"sanpi/behatch-contexts": "dev-behat-2.x@dev",
"behat/mink-extension": "1.3.*@dev",
"behat/mink-goutte-driver": "*",
"guzzle/plugin-mock": "3.7.*@dev"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin",
"component-dir": "vendor/components"
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "component/angular-ui-router",
"type": "component",
"version": "0.2.11",
"dist": {
"url": "https://github.com/angular-ui/ui-router/archive/0.2.11.zip",
"type": "zip"
},
"extra": {
"component": {
"scripts": [
"release/angular-ui-router.js"
]
}
},
"require": {
"robloach/component-installer": "*",
"components/angular.js": "1.2.x"
}
}
}
]
}