forked from yohang/satis-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (58 loc) · 1.89 KB
/
composer.json
File metadata and controls
64 lines (58 loc) · 1.89 KB
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
{
"name": "yohang/satis-admin",
"description": "A simple web-based interface for Satis repositories",
"keywords": ["satis", "interface", "composer", "silex"],
"license": "MIT",
"require": {
"bt51/gaufrette-serviceprovider": "1.0.*",
"composer/composer": "1.0.*@dev",
"composer/satis": "dev-master@dev",
"mheap/silex-assetic": "1.0.*",
"monolog/monolog": "1.5.*",
"silex/silex": "1.1.*",
"silex/web-profiler": "1.0.*",
"symfony/config": ">=2.2,<3.0",
"symfony/console": ">=2.2,<3.0",
"symfony/form": ">=2.2,<3.0",
"symfony/process": ">=2.2,<3.0",
"symfony/security": ">=2.2,<3.0",
"symfony/translation": ">=2.2,<3.0",
"symfony/validator": ">=2.2,<3.0",
"yohang/dependency-tools": "1.0.*"
},
"require-dev": {
"behat/behat": "2.4.*",
"behat/mink-extension": "1.0.*",
"behat/mink-browserkit-driver": "1.0.*",
"behat/mink-selenium2-driver": "1.0.*",
"phpunit/phpunit": "3.7.*"
},
"minimum-stability": "stable",
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-0": {
"SatisAdmin": "src"
}
},
"scripts": {
"post-install-cmd": [
"Yohang\\DependencyTools::installDeps"
],
"post-update-cmd": [
"Yohang\\DependencyTools::installDeps"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.*-dev"
},
"dependency-tools": {
"npm": true,
"bower": {
"path": "./node_modules/.bin/bower"
}
}
}
}