-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.26 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
{
"name": "laravel-tool/audit",
"description": "Laravel tool audit model",
"keywords": [
"laravel",
"audit",
"track model"
],
"type": "laravel-plugin",
"license": "MIT",
"authors": [
{
"name": "Yuriy Potemkin",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1.3",
"ext-json": "*",
"illuminate/auth": "^5.5|^6|^7|^8|^9",
"illuminate/contracts": "^5.5|^6|^7|^8|^9",
"illuminate/database": "^5.5|^6|^7|^8|^9",
"illuminate/http": "^5.5|^6|^7|^8|^9",
"illuminate/redis": "^5.5|^6|^7|^8|^9",
"illuminate/support": "^5.5|^6|^7|^8|^9",
"symfony/http-foundation": "^3.1|^4",
"symfony/http-kernel": "^3.1|^4"
},
"require-dev": {
"laravel/framework": "^5.5|^6",
"phpunit/phpunit": "^4.8|^5.2|^7.0"
},
"autoload": {
"psr-4": {
"LaravelTool\\Audit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaravelTool\\Audit\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"extra": {
"laravel": {
"providers": [
"LaravelTool\\Audit\\ServiceProvider"
]
}
}
}