-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (42 loc) · 1.08 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
{
"name": "fortrabbit/yii-memcached",
"description": "Memcached Session & Cache for Craft CMS / Yii2 on fortrabbit",
"type": "yii2-extension",
"keywords": ["yii2", "craftcms", "caching", "cache", "memcached", "memcache", "session", "mutex"],
"license": "MIT",
"authors": [
{
"name": "Oliver Stark",
"homepage": "https://www.fortrabbit.com"
}
],
"support": {
"issues": "https://github.com/fortrabbit/yii-memcached/issues",
"source": "https://github.com/fortrabbit/yii-memcached",
"docs": "https://github.com/fortrabbit/yii-memcached"
},
"require": {
"craftcms/cms": "^3.7.30|^4.0|^5.0"
},
"autoload": {
"psr-4": {
"fortrabbit\\MemcachedEnabler\\": "src/"
},
"files": ["src/init.php"]
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse src --level=5"
},
"extra": {
"bootstrap": "fortrabbit\\MemcachedEnabler\\Bootstrap"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"require-dev": {
"craftcms/phpstan": "dev-main"
}
}