-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 788 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 788 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
{
"name": "nmure/crawler-detect-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle for the Crawler-Detect library (detects bots/crawlers/spiders via the user agent)",
"keywords": ["crawler", "bot", "detect", "user-agent", "symfony", "bundle"],
"license": "MIT",
"authors": [
{
"name": "Nicolas MURE",
"email": "nm2107@hotmail.fr",
"homepage": "https://github.com/nicolasmure"
}
],
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "~4.0",
"jaybizzle/crawler-detect": "1.*"
},
"autoload": {
"psr-4": { "Nmure\\CrawlerDetectBundle\\": "" }
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"symfony/yaml": "^4.0"
}
}