forked from owen-it/laravel-auditing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.41 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
{
"name": "owen-it/laravel-auditing",
"description": "Keep a change history for your models using laravel and lumen",
"keywords": ["audit", "auditing", "activity", "laravel", "log", "logging", "register", "observer", "lumen"],
"homepage": "https://laravel-auditing.com",
"type": "package",
"license": "MIT",
"support": {
"issues": "https://github.com/owen-it/laravel-auditing/issues",
"source": "https://github.com/owen-it/laravel-auditing"
},
"authors": [
{
"name": "Antério Vieira",
"email": "[email protected]"
},
{
"name": "Raphael França",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/bus": "5.2.*|5.3.*",
"illuminate/contracts": "5.2.*|5.3.*",
"illuminate/database": "5.2.*|5.3.*",
"illuminate/queue": "5.2.*|5.3.*",
"illuminate/support": "5.2.*|5.3.*",
"ramsey/uuid": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.4",
"mockery/mockery": "~0.9.4"
},
"autoload": {
"psr-4": {
"OwenIt\\Auditing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"minimum-stability": "dev"
}