forked from tobytwigger/laravel-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tobytwigger/laravel-settings",
"description": "Settings for Laravel",
"type": "library",
"keywords": [
"config",
"open-source",
"php",
"settings",
"vuejs",
"laravel",
"database",
"vue",
"persistence",
"configuration",
"settings-storage",
"settings-repository"
],
"license": "MIT",
"homepage": "https://github.com/tobytwigger/laravel-settings",
"readme": "https://github.com/tobytwigger/laravel-settings/blob/master/README.md",
"authors": [
{
"name": "Toby Twigger",
"email": "[email protected]",
"homepage": "https://github.com/tobytwigger"
}
],
"support": {
"email": "[email protected]",
"issues":"https://github.com/tobytwigger/laravel-settings/issues",
"docs":"https://tobytwigger.github.io/laravel-settings/"
},
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/settings"
}
],
"require": {
"laravel/framework": "^8.0|^9.0",
"php": "^8.0",
"tobytwigger/form-schema-generator": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpspec/prophecy-phpunit": "^2.0",
"orchestra/testbench": "^6.2|^7.0",
"brianium/paratest": "^6.3"
},
"suggest": {
},
"autoload": {
"psr-4": {
"Settings\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Settings\\Tests\\": "tests/",
"Settings\\Database\\Factories\\": "database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"Settings\\SettingsServiceProvider"
],
"aliases": {
"settings": "Settings\\Setting"
}
}
},
"scripts": {
"test": "vendor/bin/paratest --colors --verbose --configuration phpunit.xml"
}
}