-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.17 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-php",
"type": "library",
"description": "An implementation of shortid in PHP",
"keywords": [
"shortid",
"id",
"uuid"
],
"homepage": "http://pugx.org/",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
},
{
"name": "The Community",
"homepage": "https://github.com/pugx/shortid-php"
}
],
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"paragonie/random-lib": "^2.0",
"symfony/polyfill-mbstring": "^1.19"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"PUGX\\Shortid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PUGX\\Shortid\\Test\\": "tests"
}
},
"support": {
"issues": "https://github.com/pugx/shortid-php/issues"
}
}