-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1015 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
39
40
41
42
43
{
"name": "oxygen/mod-events",
"description": "Upcoming Events Module",
"license": "MIT",
"keywords": [
"cms",
"framework",
"OxygenExtension"
],
"authors": [
{
"name": "Chris Chamberlain",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0",
"oxygen/core": "~0.13.0",
"oxygen/crud": "~0.9.0",
"oxygen/data": "~0.11.0",
"oxygen/preferences": "~0.5.0",
"illuminate/support": "~6.0"
},
"autoload": {
"psr-4": {
"OxygenModule\\Events\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"OxygenModule\\Events\\EventsServiceProvider"
]
}
},
"require-dev": {
"phpstan/phpstan": "^0.12.18",
"phpspec/phpspec": "^6.1"
},
"scripts": {
"test": "vendor/bin/phpspec run && vendor/bin/phpstan analyze src --level 1"
}
}