-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.05 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": "icybee/module-cache",
"type": "icanboogie-module",
"description": "Provides a common API and a centralized place to manage caches.",
"keywords": [
"cache"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "[email protected]",
"homepage": "http://www.weirdog.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Icybee/module-cache/issues",
"source": "https://github.com/Icybee/module-cache"
},
"minimum-stability": "dev",
"prefer-dist": true,
"prefer-stable": true,
"require": {
"php": ">=5.6",
"icanboogie/module-installer": "^4.0",
"icanboogie/i18n": "^3.0",
"icanboogie/operation": "^4.0",
"icanboogie/storage": "^2.0 | ^3.0",
"icybee/core": "^4.0"
},
"autoload": {
"psr-4": {
"Icybee\\Modules\\Cache\\": "lib"
}
},
"autoload-dev": {
"classmap": [
"tests/Application.php"
]
},
"scripts": {
"post-autoload-dump": "ICanBoogie\\Autoconfig\\Hooks::on_autoload_dump"
},
"extra": {
"icanboogie": {
"config-path": "config"
}
}
}