-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.44 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
66
67
{
"name": "cottacush/yii2-utils",
"type": "library",
"description": "Yii2 utils provides various utility classes and helpers that are compatible with the Yii2 framework",
"keywords": [
"http",
"adapters",
"helpers",
"utils",
"cottacush",
"yii2"
],
"homepage": "https://github.com/cottacush/yii2-utils",
"license": "MIT",
"authors": [
{
"name": "Adegoke Obasa",
"email": "[email protected]",
"homepage": "http://cottacush.com",
"role": "Developer"
},
{
"name": "Olawale Lawal",
"email": "[email protected]",
"homepage": "http://cottacush.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"yiisoft/yii2": "~2.0.49",
"linslin/yii2-curl": "^1.1.3",
"yiisoft/yii2-authclient": "~2.0.0",
"lukasoppermann/http-status": "^2.0",
"hashids/hashids": "^1.0",
"justblackbird/handlebars.php-helpers": "^1.2",
"fakerphp/faker": "^1.13",
"squizlabs/php_codesniffer": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": {
"CottaCush\\Yii2\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CottaCush\\Yii2\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}