-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
47 lines (47 loc) · 1.31 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
{
"name": "wotz/unique-codes",
"description": "Generate unique, random-looking codes",
"keywords": [
"unique codes",
"voucher codes",
"coupon codes"
],
"homepage": "https://github.com/wotzebra/unique-codes",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Günther Debrauwer",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^7.4|^8.0|^8.1|^8.2|^8.3"
},
"require-dev": {
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Wotz\\UniqueCodes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Wotz\\UniqueCodes\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"lint": "vendor/bin/php-cs-fixer fix && vendor/bin/phpcs --colors --report-full",
"lint-dry": "vendor/bin/php-cs-fixer fix --dry-run && vendor/bin/phpcs --colors --report-full"
},
"config": {
"sort-packages": true
}
}