-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 926 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 926 Bytes
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
{
"name": "aboutcoders/sequence-bundle",
"type": "symfony-bundle",
"description": "A symfony bundle that provides abstract sequence implementation",
"keywords": ["sequence", "doctrine"],
"homepage": "http://aboutcoders.com",
"license": "MIT",
"authors": [
{
"name": "Wojciech Ciolko",
"email": "wojciech.ciolko@aboutcoders.com"
}
],
"require": {
"symfony/symfony": "~2.5|~3.0|^4.3|^5.0",
"sensio/framework-extra-bundle": "^3.0||^5.0",
"gedmo/doctrine-extensions": "~2.0||^2.4"
},
"require-dev": {
"phpunit/phpunit": "~4.2||^5.4",
"doctrine/orm": "~2.2,>=2.2.3||^2.6",
"doctrine/doctrine-bundle": "~1.2||~2.0||^2.1",
"symfony/monolog-bundle": "~2||^3.5",
"symfony/swiftmailer-bundle": "~2.3||^3.4"
},
"autoload": {
"psr-4": {"Abc\\Bundle\\SequenceBundle\\": ""}
}
}