-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.12 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
{
"name": "phpmob/settings",
"description": "Just a settings library.",
"keywords": [
"php",
"settings"
],
"homepage": "https://github.com/phpmob/settings",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Ishmael Doss",
"email": "nukboon@gmail.com"
}
],
"autoload": {
"psr-4": {
"PhpMob\\Settings\\": ""
},
"classmap": []
},
"autoload-dev": {
"psr-4": {
}
},
"require": {
"php": "^7.1",
"doctrine/common": "^2.8"
},
"require-dev": {
"cache/filesystem-adapter": "^1.0",
"phpunit/phpunit": "^5.6",
"sylius-labs/coding-standard": "^1.0",
"symfony/form": "^3.3",
"symfony/validator": "^3.3"
},
"config": {
"sort-packages": true,
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
},
"suggest": {
"cache/filesystem-adapter": "To use built-in \\PhpMob\\Settings\\Manager\\CachedManager."
}
}