-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.31 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "gubler/guid-doctrine",
"description": "Use of a ramsey/uuid UUID with GUID codec as Doctrine field type.",
"type": "library",
"keywords": [
"uuid",
"identifier",
"guid",
"doctrine"
],
"homepage": "https://github.com/gubler/guid-doctrine",
"license": "MIT",
"authors": [
{
"name": "Daryl Gubler",
"email": "[email protected]",
"homepage": "http://dev88.co"
}
],
"support": {
"issues": "https://github.com/gubler/guid-doctrine/issues",
"source": "https://github.com/gubler/guid-doctrine"
},
"require": {
"php": "^7.2|^8.0",
"doctrine/orm": "^2.5|^3.0",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {"Gubler\\Guid\\Doctrine\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Gubler\\Guid\\Doctrine\\Tests\\": "tests/"}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpunit": "phpunit",
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"test": [
"@lint",
"@phpunit",
"@phpcs"
]
}
}