-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·57 lines (57 loc) · 1.16 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
{
"name": "simtabi/customary",
"description": "Laravel package to store key value pair settings in the database.",
"homepage": "https://github.com/simtabi/customary",
"type": "library",
"license": "MIT",
"keywords": [
"simtabi",
"laravel",
"database settings",
"db settings",
"eloquent"
],
"authors": [
{
"name": "Imani Manyara",
"email": "hello@imanimanyara.com",
"homepage": "https://www.imanimanyara.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"orchestra/testbench": "3.8.*|4.*|5.*|6.*|7.*|8.*",
"mockery/mockery": "^0.9.4 || ~1.0",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"classmap": [
"database/migrations"
],
"psr-4": {
"Simtabi\\Customary\\": "src/"
},
"files": [
"helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {}
},
"extra": {
"laravel": {
"providers": [
"Simtabi\\Customary\\CustomaryServiceProvider"
],
"aliases": {
"Customary": "Simtabi\\Customary\\Facades\\CustomaryFacade"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}