-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
68 lines (68 loc) · 1.84 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
{
"name": "los/los-rate-limit",
"description": "Rate Limit Middleware for PHP",
"require": {
"php": "^8.1",
"psr/http-message": "^1.0",
"psr/container": "^2.0",
"psr/http-server-middleware": "^1.0",
"mezzio/mezzio-problem-details": "^1.0",
"laminas/laminas-diactoros": "^2.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"doctrine/coding-standard": "^11.0",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.4"
},
"license": "BSD-3-Clause",
"keywords": [
"api",
"rate",
"limit",
"middleware"
],
"autoload-dev": {
"psr-4": {
"LosTest\\RateLimit\\": "test/"
}
},
"autoload": {
"psr-4": {
"Los\\RateLimit\\": "src/"
}
},
"type": "library",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"support": {
"email": "[email protected]",
"source": "https://github.com/LansoWeb/LosRateLimit",
"issues": "https://github.com/LansoWeb/LosRateLimit/issues"
},
"homepage": "https://github.com/LansoWeb/LosRateLimit",
"authors": [
{
"name": "Leandro Silva",
"email": "[email protected]"
}
],
"scripts": {
"check": [
"@cs-check",
"@phpstan"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "php-coveralls -v"
}
}