-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.07 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": "flipboxdigital/interval",
"description": "Interval Field Type",
"version": "1.0.0-beta.5",
"type": "craft-plugin",
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"optimize-autoloader": true
},
"require": {
"craftcms/cms": "~3.0.0-beta.19"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^2.0"
},
"autoload": {
"psr-4": {
"flipbox\\interval\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"flipbox\\interval\\tests\\": "tests/src/"
}
},
"extra": {
"name": "Interval",
"handle": "interval",
"developer": "Flipbox Digital",
"developerUrl": "https://www.flipboxdigital.com",
"class": "flipbox\\interval\\Interval",
"hasCpSettings": false,
"hasCpSection": false,
"schemaVersion": "1.0.0",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
},{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}