-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 942 Bytes
/
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
{
"name": "kinulab/sequence-generator-bundle",
"type": "symfony-bundle",
"authors": [
{
"name": "Marc Mauzole",
"email": "[email protected]"
},
{
"name": "Johan Desmyter",
"email": "[email protected]"
}
],
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/kinulab/sequence-generator-bundle.git"
}
],
"require": {
"php": "^7.1.0||^8.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.5||^3.0",
"symfony/property-access": "^3.4||^4.0"
},
"autoload": {
"psr-4": {
"Kinulab\\SequenceGeneratorBundle\\": "src",
"Test\\Kinulab\\SequenceGeneratorBundle\\": "tests/"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^4.1",
"symfony/var-dumper": "^4.1"
}
}