-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.54 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
{
"name": "wearesho-team/yii2-guzzle",
"description": "Container configuration with requests logs for Yii2",
"type": "library",
"require": {
"php": "^7.4 | ^8.0",
"guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
"horat1us/yii2-carbon-behavior": "^1.2",
"horat1us/yii2-migration-bootstrap": "^1.3",
"horat1us/yii2-validation-exception": "^1.1",
"yiisoft/yii2": "^2.0.47",
"yiisoft/yii2-queue": "^2.3"
},
"require-dev": {
"ext-json": "*",
"horat1us/yii2-asset-free": "^1.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"license": "MIT",
"authors": [
{
"name": "Alexander Letnikow",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"process-timeout": 1800,
"sort-packages": true,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR12 ./src ./tests",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR12 ./src ./tests",
"cover": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover coverage.xml",
"test-mysql": "./vendor/bin/phpunit --configuration phpunit.xml",
"test-pgsql": "./vendor/bin/phpunit --configuration phpunit.pgsql.xml",
"test": "composer run-script test-mysql && composer run-script test-pgsql"
},
"autoload": {
"psr-4": {
"Wearesho\\Yii\\Guzzle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wearesho\\Yii\\Guzzle\\Tests\\": "tests/"
}
}
}