-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
50 lines (50 loc) · 1.21 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": "faryshta/yii2-disable-submit-buttons",
"description": "Yii2 asset to automatically disable submit buttons on Yii2 ActiveForm.",
"keywords": [
"yii",
"yii2",
"activeform",
"jquery",
"disable"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"homepage": "https://github.com/Faryshta/yii2-jquery-tagsinput",
"authors": [
{
"name": "Angel (Faryshta) Guevara",
"email": "angeldelcaos@gmail.com",
"homepage": "https://github.com/Faryshta",
"role": "Developer"
}
],
"require": {
"php": ">=5.6",
"yiisoft/yii2": "~2.0.0"
},
"require-dev": {
"yiisoft/yii2-debug": "*"
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"faryshta\\disableSubmitButtons\\": "src"
}
},
"scripts": {
"yii": "@php tests/_app/yii.php",
"deploy-tests": "@composer update --prefer-stable"
}
}