-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.22 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sandritsch91/yii2-widget-flatpickr",
"type": "yii2-extension",
"description": "A flatpickr widget for yii2",
"keywords": [
"yii2",
"widget",
"date",
"time",
"datepicker",
"datetimepicker",
"flatpickr"
],
"license": "MIT",
"authors": [
{
"name": "Sandritsch91",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/sandritsch91/yii2-widget-flatpickr",
"issues": "https://github.com/sandritsch91/yii2-widget-flatpickr/issues"
},
"minimum-stability": "beta",
"require": {
"php": ">=5.6",
"yiisoft/yii2": "^2.0.20",
"npm-asset/flatpickr": "^4.6.9"
},
"require-dev": {
"ext-gd": "*",
"ext-mbstring": "*",
"yiisoft/yii2-coding-standards": "~2.0",
"phpunit/phpunit": "<7"
},
"suggest": {
"ext-gd": "For autogeneration of visualisations",
"ext-mbstring": "For encoding conversion"
},
"autoload": {
"psr-4": {
"sandritsch91\\yii2\\flatpickr\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"yiiunit\\extensions\\flatpickr\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}