-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 956 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 956 Bytes
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
{
"name": "ex3v/random-string-key-generator",
"description": "Library to generate random and unique YouTube-like string ids, as an alternative to UUID",
"keywords": ["UUID", "unique", "keygen", "key generator", "youtube"],
"license": "MIT",
"authors": [
{
"name": "Maciej Szkamruk",
"homepage": "https://github.com/Ex3v"
}
],
"type": "library",
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "6.*",
"doctrine/orm": "^2.6"
},
"autoload": {
"psr-4": {
"Ex3v\\RandomStringKeyGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ex3v\\RandomStringKeyGenerator\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}