-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
65 lines (65 loc) · 1.46 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
63
64
65
{
"name": "sam-it/yii2-mariadb",
"description": "MariaDB Driver for Yii2",
"type": "yii2-extension",
"license": "MIT",
"authors": [
{
"name": "Sam Mousa",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SamIT\\Yii2\\MariaDb\\" : "src/"
}
},
"autoload-dev": {
"classmap": [
"vendor/yiisoft/yii2-dev/tests/data/ar"
],
"psr-4": {
"SamIT\\Yii2\\MariaDb\\Tests\\": [
"tests/mariadb"
]
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">= 7.4",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"yiisoft/yii2": "> 2.0.14"
},
"require-dev": {
"yiisoft/yii2-dev": "^2",
"phpunit/phpunit": "^9",
"symplify/easy-coding-standard": "^10.3"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"process-timeout": 1200,
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"extra": {
"hooks": {
"pre-commit": [
"echo committing as $(git config user.name)",
"composer lint-fix",
"composer test"
],
"commit-msg": [
"npx commitlint -e"
]
}
}
}