-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 784 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 784 Bytes
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
{
"name": "boronczyk/localization-middleware",
"type": "library",
"description": "PSR-15 middleware to assist primarily with language-based content negotiation and various other localization tasks.",
"keywords": ["PSR-15", "Slim", "Localization"],
"homepage": "https://github.com/tboronczyk/localization-middleware",
"license": "MIT",
"authors": [
{
"name": "Timothy Boronczyk",
"email": "tboronczyk@gmail.com"
}
],
"require": {
"php": ">=7.2",
"psr/http-message": ">=1.0",
"psr/http-server-middleware": ">=1.0"
},
"require-dev": {
"phpunit/phpunit": ">=9.4",
"slim/psr7": ">=1.4.1"
},
"autoload": {
"psr-4": { "Boronczyk\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Boronczyk\\Tests\\": "tests/" }
}
}