forked from DarkGhostHunter/Laraconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.23 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
50
51
52
53
54
{
"name": "darkghosthunter/laraconfig",
"description": "Per-user settings repository system for Laravel",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Italo Baeza C.",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"illuminate/database": "^8.43",
"illuminate/support": "^8.43",
"illuminate/collections": "^8.43",
"illuminate/config": "^8.43",
"illuminate/cache": "^8.43",
"symfony/console": "^5.3"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.19",
"phpunit/phpunit": "^9.5.4"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"autoload": {
"psr-4": {
"DarkGhostHunter\\Laraconfig\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"DarkGhostHunter\\Laraconfig\\LaraconfigServiceProvider"
],
"aliases": {
"Setting": "DarkGhostHunter\\Laraconfig\\Facades\\Setting"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}