-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.3 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
{
"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": "^5.4 || ^7.0",
"doctrine/orm": "^2.5",
"ramsey/uuid": "^3.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.0",
"phpunit/phpunit": "^4.7 || ^5.0",
"satooshi/php-coveralls": "^0.6.1",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {"Gubler\\Guid\\Doctrine\\": "src/"}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpunit": "phpunit --verbose --colors=always",
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"test": [
"@lint",
"@phpunit",
"@phpcs"
]
}
}