-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.35 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"name": "stephpy/timeline-bundle",
"description": "Symfony2 bundle to make timeline",
"keywords": ["timeline", "notification", "symfony", "bundle"],
"type": "symfony-bundle",
"homepage": "https://github.com/stephpy/timeline-bundle",
"license": "MIT",
"authors": [{
"name": "Community contributors",
"homepage": "https://github.com/stephpy/timeline-bundle/contributors"
}],
"require": {
"php": "^7.1|^8.0",
"stephpy/timeline": "^2.0",
"symfony/framework-bundle": "^5.0|^6.0",
"symfony/options-resolver": "^5.0|^6.0"
},
"require-dev": {
"atoum/atoum": "1.*|3.*",
"doctrine/orm": "^2.6",
"symfony/console": "^5.0|^6.0",
"symfony/twig-bundle": "^5.0|^6.0",
"symfony/expression-language": "^5.0|^6.0"
},
"suggest": {
"symfony/console": "List spreads and deploy timelines via a command",
"snc/redis-bundle": "Use redis driver",
"doctrine/orm": "Use doctrine ORM driver",
"doctrine/mongodb-odm-bundle": "Use doctrine ODM driver"
},
"conflict": {
"doctrine/orm": "<2.6"
},
"autoload": {
"psr-4": { "Spy\\TimelineBundle\\": "" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}