-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 954 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
{
"name": "igaster/laravel-model-options",
"description": "Store an Options array in a JSON column. Get/Set values as if they were seperate keys in the Database",
"keywords": [
"model-options",
"model-settings",
"options-json",
"settings-json",
"laravel",
"package",
"trait"
],
"license": "MIT",
"homepage": "https://github.com/igaster/laravel-model-options.git",
"authors": [
{
"name": "Giannis Gasteratos",
"email": "igasteratos@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.*"
},
"require-dev": {
"orchestra/testbench": "~3.7",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-4" : {
"igaster\\modelOptions\\" : "src/",
"igaster\\modelOptions\\Tests\\" : "tests/"
}
},
"minimum-stability": "stable"
}