-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
29 lines (27 loc) · 900 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
{
"name": "mihai-stancu/doctrine-types-extra",
"type": "bundle",
"description": "Doctrine2 storing `UUID()` as BINARY(16) and `UUID_SHORT()` as BIGINT for MySQL.",
"keywords": ["binary_guid", "binary_uuid", "short_guid", "short_uuid", "uuid", "guid", "doctrine2", "mysql", "binary", "bigint"],
"license": "MIT",
"authors": [
{
"name": "Mihai Stancu",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"doctrine/orm": "^2",
"symfony/dependency-injection": "~2|~3",
"symfony/config": "~2|~3",
"symfony/http-kernel": "~2|~3",
"symfony/filesystem": "~2|~3",
"symfony/event-dispatcher": "~2|~3",
"symfony/http-foundation": "~2|~3",
"symfony/debug": "~2|~3"
},
"autoload": {
"psr-4": { "MS\\DoctrineTypes\\": "" }
}
}