forked from fico7489/laravel-pivot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.25 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
{
"name": "fico7489/laravel-pivot",
"description": "This package introduces new eloquent events for sync(), attach(), detach() or updateExistingPivot() methods on BelongsToMany relation.",
"keywords": [
"laravel BelongsToMany events",
"eloquent extra events",
"laravel pivot events",
"laravel sync events",
"eloquent events"
],
"homepage": "https://github.com/fico7489/laravel-pivot",
"support": {
"issues": "https://github.com/fico7489/laravel-pivot/issues",
"source": "https://github.com/fico7489/laravel-pivot"
},
"license": "MIT",
"authors": [
{
"name": "Filip Horvat",
"email": "filip.horvat@am2studio.hr",
"homepage": "http://am2studio.hr",
"role": "Developer"
}
],
"require": {
"illuminate/database": "5.*"
},
"require-dev": {
"orchestra/testbench": "3.*",
"friendsofphp/php-cs-fixer": "2.*"
},
"autoload": {
"psr-4": {
"Fico7489\\Laravel\\Pivot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fico7489\\Laravel\\Pivot\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}