-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
41 lines (41 loc) · 1.05 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
{
"name": "theodo-evolution/legacy-wrapper-bundle",
"type": "symfony-bundle",
"keywords": ["legacy", "symfony1", "symfony2"],
"homepage": "http://www.theodo.fr",
"license": "MIT",
"authors": [
{
"name": "Theodo",
"homepage": "http://www.theodo.fr"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Theodo\\Evolution\\Bundle\\LegacyWrapperBundle\\": ""
}
},
"require": {
"php": ">=5.3.3|>=7.1.3",
"composer/composer": "~1.0@dev",
"symfony/framework-bundle": "~2.1|~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"phpspec/prophecy": "~1.1",
"phpspec/prophecy-phpunit": "~1.0",
"theodo-evolution/fake-projects": "dev-master"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/theodo/theodo-evolution-fake-projects"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}