-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.17 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
{
"name": "luyadev/yii-helpers",
"description": "Static helper methods in addition to the Yii Framework.",
"type": "library",
"require": {
"yiisoft/yii2": "^2.0"
},
"require-dev": {
"luyadev/luya-testsuite": "^2.0",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.14.2"
},
"autoload": {
"psr-4": {
"luya\\yii\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"luya\\yii\\tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Basil Suter",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "vendor/bin/phpstan -v",
"phpcsfixer": "vendor/bin/php-cs-fixer fix",
"rector": "vendor/bin/rector"
},
"config": {
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}