-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.32 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.32 KB
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
{
"name": "sebkay/arbalest",
"description": "An all-in-one, easy to use solution for sending emails with various APIs.",
"license": "MIT",
"authors": [
{
"name": "Seb Kay",
"email": "seb@sebkay.com",
"homepage": "https://sebkay.com"
}
],
"autoload": {
"psr-4": {
"Arbalest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArbalestTests\\": "tests/"
}
},
"require": {
"php": "^7.3 | ^8.0",
"guzzlehttp/guzzle": "^7.3",
"campaignmonitor/createsend-php": "^6.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"spatie/ray": "^1.30",
"fakerphp/faker": "^1.16",
"nunomaduro/phpinsights": "^2.0",
"pestphp/pest": "^1.21"
},
"scripts": {
"build": "git clean -xffd -e *.env && composer install",
"lint": "./vendor/bin/phpcs --standard=PSR12 ./src",
"fix": "./vendor/bin/phpcbf --standard=PSR12 ./src",
"analyse": "./vendor/bin/phpinsights --no-interaction --min-quality=90 --min-complexity=80 --min-architecture=90 --min-style=90 -v",
"test": "./vendor/bin/pest",
"test:coverage": "@test --coverage-html coverage",
"test:coverage:check": "@test --coverage --min=90"
}
}