This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
62 lines (54 loc) · 1.51 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
{
"name" : "iltar/http-bundle",
"description" : "Adding extra functionality to Symfony",
"license" : "MIT",
"type" : "symfony-bundle",
"keywords" : ["Symfony", "Http", "Bundle"],
"authors": [
{
"name" : "Iltar van der Berg",
"email" : "kjarli@gmail.com",
"homepage" : "https://github.com/iltar"
}
],
"require": {
"php" : "^5.5||^7.0",
"symfony/config" : "^2.7||^3.0||^4.0",
"symfony/dependency-injection" : "^2.7||^3.0||^4.0",
"symfony/framework-bundle" : "^2.7||^3.0||^4.0",
"symfony/http-kernel" : "^2.7||^3.0||^4.0",
"symfony/property-access" : "^2.7||^3.0||^4.0",
"symfony/routing" : "^2.7||^3.0||^4.0"
},
"require-dev" : {
"symfony/finder" : "^2.7||^3.0||^4.0",
"doctrine/doctrine-bundle" : "^1.5.0",
"doctrine/orm" : "^2.5",
"phpunit/phpunit" : "^4.7||^5.0",
"symfony/phpunit-bridge" : "^2.8||^3.0||^4.0",
"symfony/security-http" : "^2.7||^3.0||^4.0",
"symfony/var-dumper" : "^2.7||^3.0||^4.0"
},
"minimum-stability" : "dev",
"autoload": {
"psr-4": {
"Iltar\\HttpBundle\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iltar\\HttpBundle\\" : "test/"
},
"classmap": [
"test/Functional/Fixtures/TestKernel.php"
]
},
"archive": {
"exclude": [ "/test" ]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}