-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.34 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.34 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
{
"name": "partfire/common-bundle",
"description": "A collection of Base and Abstract classes etc used to speed up development.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Carl Owens",
"email": "carl@partfire.co.uk",
"homepage": "https://partfire.co.uk"
},
{
"name": "Graham Owens",
"email": "gra@partfire.co.uk",
"homepage": "https://partfire.co.uk"
},
{
"name": "PartFire Ltd",
"homepage": "https://github.com/PartFire"
}
],
"require": {
"php": "^5.5.9 || ^7.0",
"symfony/framework-bundle": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^5.1",
"gedmo/doctrine-extensions": "^2.4"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"autoload": {
"psr-4": {
"PartFire\\CommonBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/",
"spec"
]
},
"autoload-dev": {
"psr-4": {
"PartFire\\CommonBundle\\Tests\\": "Tests/",
"PartFire\\CommonBundle\\spec\\": "spec/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}