-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.32 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
{
"name": "flipboxfactory/keychain",
"description": "Key pair management for Craft CMS",
"version": "5.0.0",
"type": "craft-plugin",
"keywords": [
"cms",
"craftcms",
"openssl",
"key pair",
"yii2"
],
"require": {
"craftcms/cms": "^5.0.0",
"lib-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^2.0"
},
"autoload": {
"psr-4": {
"flipbox\\keychain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"flipbox\\keychain\\tests\\": "tests/src/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/flipboxfactory/keychain/issues?state=open",
"source": "https://github.com/flipboxfactory/keychain",
"docs": "https://github.com/flipboxfactory/keychain",
"rss": "https://github.com/flipboxfactory/keychain/commits/master.atom"
},
"extra": {
"name": "KeyChain",
"version": "5.0.0",
"schemaVersion": "1.0.0",
"handle": "keychain",
"class": "flipbox\\keychain\\KeyChain",
"developer": "Flipbox Digital",
"developerUrl": "https://www.flipboxdigital.com",
"changelogUrl": "https://raw.githubusercontent.com/flipboxfactory/keychain/master/CHANGELOG.md",
"downloadUrl": "https://github.com/flipboxfactory/keychain/archive/master.zip"
}
}