-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 759 Bytes
/
Copy pathcomposer.json
File metadata and controls
25 lines (25 loc) · 759 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
{
"name": "kabudu/event-logger",
"description": "Event logger is a PHP based event logger library that makes it easy to collect and query events in your web application based on user or system actions.",
"keywords": ["event", "logging", "tracking", "conversion", "marketing", "statistic"],
"license": "Apache 2.0",
"authors": [
{
"name": "Kamba Abudu",
"email": "kabudu@gmail.com"
}
],
"autoload": {
"psr-0": { "EventLogger" : "src/" }
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"suggest": {
"sqlite": "for unit test coverage and using the shipped SQLite persistence implementation",
"mysql": "for using the shipped MySQL persistence implementation"
}
}