forked from ramsey/uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.71 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ramsey/uuid",
"type": "library",
"description": "A PHP 7.2+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
"keywords": [
"uuid",
"identifier",
"guid"
],
"homepage": "https://github.com/ramsey/uuid",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-json": "*",
"symfony/polyfill-ctype": "^1.8"
},
"require-dev": {
"ext-gmp": "*",
"codeception/aspect-mock": "~2.0.0",
"doctrine/annotations": "^1.2",
"goaop/framework": "^2.1 <2.2",
"jakub-onderka/php-parallel-lint": "^0.9.0",
"mockery/mockery": "^1.0",
"moontoast/math": "^1.1",
"paragonie/random-lib": "^2.0",
"php-mock/php-mock-phpunit": "^2.0",
"phpstan/phpstan-phpunit": "0.9.2",
"phpstan/phpstan-shim": "0.9.1",
"phpunit/phpunit": "^6.4",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"ext-ctype": "Provides support for PHP Ctype functions",
"ext-gmp": "Provides support for converting UUID to 128-bit integer (in string form).",
"ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
"ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
"moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
"ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
"ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"autoload": {
"psr-4": {
"Ramsey\\Uuid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ramsey\\Uuid\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"phpstan": [
"phpstan analyse -c phpstan.neon src --level max --no-progress",
"phpstan analyse -c phpstan-tests.neon tests --level 4 --no-progress"
],
"phpunit": "phpunit --verbose --colors=always",
"test": [
"@lint",
"@phpstan",
"@phpunit",
"@phpcs"
]
},
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
"rss": "https://packagist.org/feeds/package.ramsey/uuid.rss"
}
}