-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
36 lines (36 loc) · 943 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
{
"name":"vivait/string-generator-bundle",
"license": "MIT",
"description":"Generate random strings for IDs or keys using property annotations",
"authors":[
{
"name":"Robin Cawser",
"email":"[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"doctrine/orm": "^2.6",
"symfony/security": "^3.3|^4.0",
"symfony/options-resolver": "^3.0|^4.0",
"ircmaxell/random-lib": "~1.0",
"symfony/dependency-injection": "^3.3|^4.0",
"symfony/config": "^3.3|^4.0"
},
"suggest": {
"ramsey/uuid": "To use the UUID generator you should require this package"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"config": {
"bin-dir": "bin"
},
"autoload":{
"psr-0":{
"Vivait\\StringGeneratorBundle\\": "src/"
}
}
}