forked from pionl/smart-emailing-v3
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.82 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
{
"name": "pion/smart-emailing-v3",
"description": "Wrapper for SmartEmailing API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Martin Kluska",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SmartEmailing\\v3\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SmartEmailing\\v3\\Tests\\": "tests"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": ">=7.5",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.6",
"vlucas/phpdotenv": "^2.4",
"phpstan/phpstan": "^1.10.14",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-mockery": "^1.1.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"rector/rector": "0.15.1",
"symplify/easy-coding-standard": "11.1.20",
"slevomat/coding-standard": "~8.0"
},
"scripts": {
"check": ["Composer\\Config::disableProcessTimeout", "composer lint && composer test && composer lint:stan"],
"lint:check": "./vendor/bin/ecs",
"lint:fix": "./vendor/bin/ecs --fix",
"lint:stan": "./vendor/bin/phpstan",
"lint:upgrade:check": ["Composer\\Config::disableProcessTimeout","vendor/bin/rector process --dry-run"],
"lint:upgrade": ["Composer\\Config::disableProcessTimeout","vendor/bin/rector process"],
"lint": ["Composer\\Config::disableProcessTimeout","composer lint:upgrade && composer lint:fix && composer lint:stan"],
"test": "./vendor/bin/phpunit",
"test:coverage": "./vendor/bin/phpunit --coverage-text"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}