forked from puphpet/puphpet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.39 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
{
"require": {
"php": ">=5.4.0",
"silex/silex": "1.0.*",
"twig/twig": "1.*",
"symfony/http-foundation": "2.2.*",
"symfony/http-kernel": "2.2.*",
"symfony/twig-bridge": "2.2.*",
"symfony/property-access": "2.2.*",
"symfony/yaml": "2.2.*",
"igorw/config-service-provider": "1.2.*",
"nicl/silex-markdown": "1.0.*",
"jtreminio/vagrant-puppet-lamp": "1.*@dev",
"jfryman/puppet-nginx": "dev-master",
"puppetlabs/postgresql": "2.2.1",
"frastel/puppet-phpmyadmin": "dev-master",
"frastel/puppet-symfony": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.8.*@dev",
"whatthejeff/nyancat-phpunit-resultprinter": "1.1.x-dev",
"symfony/browser-kit": "2.2.*",
"symfony/css-selector": "2.2.*"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Puphpet": "src/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/frastel/puppet-nginx"
},
{
"type": "package",
"package": {
"name": "puppetlabs/postgresql",
"version": "2.2.1",
"source": {
"url": "git://github.com/puppetlabs/puppetlabs-postgresql.git",
"type": "git",
"reference": "tags/2.2.1"
}
}
},
{
"type": "package",
"package": {
"name": "frastel/puppet-phpmyadmin",
"version": "master",
"source": {
"url": "git://github.com/frastel/puppet-phpmyadmin.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "frastel/puppet-symfony",
"version": "master",
"source": {
"url": "git://github.com/frastel/puppet-symfony.git",
"type": "git",
"reference": "master"
}
}
}
]
}