-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 813 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 813 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
30
31
32
33
{
"name": "php-middleware/block-robots",
"description": "PSR-15 middleware to avoid search engine indexing with PSR-7",
"type": "library",
"keywords": [
"middleware",
"psr",
"psr-7",
"psr-15",
"seo",
"robots"
],
"require": {
"php": ">=5.6",
"psr/http-message": "^1.0",
"php-middleware/double-pass-compatibility": "^1.0",
"http-interop/http-middleware": "^0.4.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.1",
"zendframework/zend-diactoros": "^1.1.3"
},
"autoload": {
"psr-4": {
"PhpMiddleware\\BlockRobots\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpMiddlewareTest\\BlockRobots\\": "test/"
}
}
}