-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.16 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
51
52
53
{
"name": "pugx/shortid-doctrine",
"type": "library",
"description": "Doctrine type for shortid-php",
"keywords": [
"shortid",
"id",
"uuid",
"doctrine"
],
"homepage": "http://pugx.org/",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Arione",
"email": "garakkio@gmail.com"
},
{
"name": "The Community",
"homepage": "https://github.com/pugx/shortid-doctrine"
}
],
"require": {
"php": "^8.1",
"doctrine/orm": "^2.7 || ^3.0",
"pugx/shortid-php": "^1.0"
},
"require-dev": {
"dg/bypass-finals": "^1.6",
"phpunit/phpunit": "^9.6"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"PUGX\\Shortid\\Doctrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PUGX\\Shortid\\Doctrine\\Test\\": "tests"
}
},
"support": {
"issues": "https://github.com/pugx/shortid-doctrine/issues"
}
}