forked from ramsey/uuid-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.07 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
{
"name": "ramsey/uuid-console",
"description": "A console application for generating UUIDs with ramsey/uuid.",
"type": "project",
"keywords": [
"uuid",
"identifier",
"guid",
"console",
"cli"
],
"homepage": "https://github.com/ramsey/uuid-console",
"license": "MIT",
"authors": [
{
"name": "Ben Ramsey",
"email": "[email protected]",
"homepage": "http://benramsey.com"
}
],
"support": {
"issues": "https://github.com/ramsey/uuid-console/issues",
"source": "https://github.com/ramsey/uuid-console"
},
"require": {
"php": ">=5.4",
"ramsey/uuid": "^3.0",
"symfony/console": "^2.7|~3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5.7|^6.4",
"squizlabs/php_codesniffer": "^2.3",
"jakub-onderka/php-parallel-lint": "^0.9.0",
"satooshi/php-coveralls": "^0.6.1"
},
"bin": ["bin/uuid"],
"autoload": {
"psr-4": {"Ramsey\\Uuid\\Console\\": "src/"}
}
}