-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.24 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
{
"name": "de1vin/uuid-packer",
"description": "A tool for packing and unpacking uuid",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Zinchenko Vladimir",
"email": "de1vin@ya.ru"
}
],
"homepage": "https://github.com/de1vin/UuidPacker",
"require": {
"php": "^7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-shim": "^0.11.1",
"phpunit/phpunit": "^7.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"de1vin\\UuidPacker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"de1vin\\UuidPacker\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"lint": "parallel-lint src tests",
"cs-fixer": "php-cs-fixer fix",
"phpstan": [
"phpstan analyse src --level max"
],
"phpunit": "phpunit --verbose --colors=always",
"test": [
"@lint",
"@phpstan",
"@phpunit",
"@cs-fixer"
]
}
}