forked from renoki-co/laravel-yaml-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.37 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
45
46
47
48
49
{
"name": "renoki-co/laravel-yaml-config",
"description": "The usual Laravel config files, but with one YAML. Write objects and arrays in your config without having to write ugly inline, JSON.",
"keywords": ["laravel", "php", "yaml", "env", "environment", "config", "configuration"],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-yaml-config",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"ext-yaml": "*",
"laravel/framework": "^9.35"
},
"autoload": {
"psr-4": {
"RenokiCo\\LaravelYamlConfig\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\LaravelYamlConfig\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.0",
"orchestra/testbench-core": "^7.0",
"phpunit/phpunit": "^9.5.25"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"RenokiCo\\LaravelYamlConfig\\LaravelYamlConfigServiceProvider"
]
}
}
}