-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1007 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": "guikingone/symfony-uid-doctrine",
"description": "Allow the use of symfony/uid as Doctrine field type",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Guillaume Loulier",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Guikingone\\SymfonyUid\\Doctrine\\": "src/",
"Guikingone\\SymfonyUid\\Doctrine\\Uuid\\": "src/Uuid/",
"Guikingone\\SymfonyUid\\Doctrine\\Ulid\\": "src/Ulid/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Guikingone\\SymfonyUid\\Doctrine\\": "tests/",
"Tests\\Guikingone\\SymfonyUid\\Doctrine\\Uuid\\": "tests/Uuid/",
"Tests\\Guikingone\\SymfonyUid\\Doctrine\\Ulid\\": "tests/Ulid/"
}
},
"require": {
"php": ">=7.2",
"doctrine/orm": "^2.5",
"symfony/uid": "^5.1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpstan/phpstan": "^0.12.30",
"infection/infection": "^0.15.3",
"friendsofphp/php-cs-fixer": "^2.16"
}
}