forked from stephpy/timeline-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.5 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
{
"name": "stephpy/timeline-bundle",
"description": "Symfony 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": ">=8.3",
"stephpy/timeline": "^1.0",
"symfony/framework-bundle": ">=5.4",
"symfony/options-resolver": ">=5.4",
"twig/twig": ">=3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^9.6",
"doctrine/orm": "^2.6",
"symfony/console": ">=5.4",
"symfony/twig-bundle": ">=5.4",
"symfony/expression-language": ">=5.4"
},
"repositories": [
{ "type": "vcs", "url": "https://github.com/fulll/timeline.git" }
],
"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": "2.2.x-dev"
}
}
}