-
Notifications
You must be signed in to change notification settings - Fork 83
/
composer.json
42 lines (42 loc) · 1.11 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
{
"name": "daftspunk/laravel-config-writer",
"description": "Laravel provider to be able to rewrite configuration",
"homepage": "http://octobercms.com",
"keywords": ["october cms", "october", "laravel", "config", "write", "provider"],
"license": "MIT",
"authors": [
{
"name": "Alexey Bobkov",
"email": "aleksey.bobkov@gmail.com"
},
{
"name": "Samuel Georges",
"email": "daftspunky@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/config": "5.*|6.*|7.*|8.*|9.*|10.*|11.*|12.*|13.*|14.*|15.*|16.*|17.*|18.*|19.*|20.*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "3.8"
},
"autoload": {
"psr-4": {
"October\\Rain\\Config\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"October\\Rain\\Config\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}