-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 901 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
{
"name": "reedware/laravel-events",
"description": "Define all of your events in a simple configuration file.",
"keywords": ["laravel", "events"],
"license": "MIT",
"authors": [
{
"name": "Tyler Reed",
"email": "tylernathanreed@gmail.com"
}
],
"require": {
"php": "^7.1.3|^8.0",
"laravel/framework": "^6.19|^7.0|^8.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"psr-4": {
"Reedware\\LaravelEvents\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Reedware\\LaravelEvents\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Reedware\\LaravelEvents\\EventConfigurationServiceProvider"
]
}
}
}