This repository was archived by the owner on May 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.49 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
{
"name": "browscap/http-access-log-parser",
"type": "library",
"description": "Parses Http access logs",
"keywords": ["log parser"],
"homepage": "https://github.com/browscap/http-access-log-parser",
"license": "MIT",
"authors": [
{
"name": "James Titcumb",
"email": "[email protected]"
},
{
"name": "Thomas Mueller",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/browscap/http-access-log-parser/issues",
"source": "https://github.com/browscap/http-access-log-parser"
},
"require": {
"php": "~7.1.0",
"psr/simple-cache": "^1.0",
"roave/doctrine-simplecache": "^1.1",
"symfony/filesystem": "^3.3 || ^4.0",
"symfony/finder": "^3.3 || ^4.0",
"symfony/console": "^3.3 || ^4.0",
"monolog/monolog": "^1.23",
"browscap/browscap-php": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"mikey179/vfsStream": "^1.6",
"squizlabs/php_codesniffer": "^3.2",
"friendsofphp/php-cs-fixer": "^2.9",
"phpstan/phpstan": "^0.9"
},
"suggest": {
"ext-curl": "to use curl requests to get the ini file"
},
"autoload": {
"psr-4": {
"HttpAccessLogParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HttpAccessLogParserTest\\": "tests/"
}
},
"bin": ["bin/log-parser"]
}