This repository has been archived by the owner on Aug 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.27 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "eliasis-framework/http-request-logger",
"description": "Save HTTP request information to the database.",
"type": "eliasis-plugin",
"keywords": [
"Eliasis",
"Framework",
"Request",
"HTTP Request Logger",
"Eliasis plugin",
"HMVC",
"PHP"
],
"license": "MIT",
"authors": [
{
"name": "Josantonius",
"email": "[email protected]",
"homepage": "https://josantonius.com",
"role": "Developer"
}
],
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/eliasis-framework/http-request-logger/issues",
"forum": "http://stackoverflow.com/tags/eliasis",
"source": "https://github.com/eliasis-framework/http-request-logger"
},
"require": {
"php": "^5.6 || ^7.0",
"eliasis-framework/eliasis" : "^1.1.3",
"eliasis-framework/complement": "^1.1.1",
"composer/installers" : "^1.4.0",
"Josantonius/LoadTime" : "^1.1.7",
"Josantonius/Ip" : "^1.1.7",
"Josantonius/Hook" : "^1.1.0",
"Josantonius/Database" : "^1.1.9"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^2.3 || ^2.8",
"phpmd/phpmd" : "^2.6"
},
"autoload": {
"psr-4": {
"Eliasis\\Plugins\\HttpRequestLogger\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eliasis\\Plugins\\HttpRequestLogger\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --colors=always;",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');",
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
"fix": [
"vendor/bin/php-cs-fixer fix -v",
"vendor/bin/phpcbf src tests"
],
"tests": [
"clear",
"@phpunit",
"@phpmd",
"@phpcs"
]
}
}