forked from akrabat/ip-address-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 980 Bytes
/
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
{
"name": "akrabat/ip-address-middleware",
"description": "PSR-15 middleware that determines the client IP address and stores it as a ServerRequest attribute",
"keywords": [
"psr7", "middleware", "ip"
],
"homepage": "http://github.com/akrabat/rka-ip-address-middleware",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Rob Allen",
"email": "rob@akrabat.com",
"homepage": "http://akrabat.com"
}
],
"replace": {
"akrabat/rka-ip-address-middleware": "*"
},
"require": {
"php": "^7.2 || ^8.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.4",
"phpunit/phpunit": "^8.5.8 || ^9.4",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"RKA\\Middleware\\": "src"
}
}
}