-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 940 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 940 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "arkitecht/laravel-attributions",
"description": "Laravel 5/6/7/8/9/10 - Track attributions (model creator / updater)",
"keywords": [
"attributions",
"credit",
"laravel",
"model",
"arkitecht"
],
"license": "MIT",
"authors": [
{
"name": "Aaron Rubin",
"email": "aaron@arkitech.net"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/database": ">=5",
"illuminate/support": ">=5"
},
"autoload": {
"psr-4": {
"Arkitecht\\Attributions\\": "src/Arkitecht/Attributions/"
}
},
"extra": {
"laravel": {
"providers": [
"Arkitecht\\Attributions\\Providers\\AttributionServiceProvider"
],
"aliases": {
"Schema": "Arkitecht\\Attributions\\Facades\\Schema"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^7",
"phpunit/phpunit": "^9.0"
}
}