forked from fntneves/laravel-transactional-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "fntneves/laravel-transactional-events",
"description": "Transactional layer for Laravel Event Dispatcher",
"type": "library",
"license": "MIT",
"require": {
"illuminate/database": "5.5.* || 5.6.* || 5.7.*",
"illuminate/events": "5.5.* || 5.6.* || 5.7.*",
"illuminate/support": "5.5.* || 5.6.* || 5.7.*",
"php": "^7.0"
},
"authors": [
{
"name": "Francisco Neves",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Neves\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Neves\\Events\\EventServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require-dev": {
"orchestra/testbench": "3.5.* || 3.6.* || 3.7.*"
}
}