forked from twisted1919/mailwizz-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 726 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 726 Bytes
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
{
"name": "twisted1919/mailwizz-php-sdk",
"type": "library",
"description": "Mailwizz PHP-SDK",
"keywords": ["mailwizz"],
"homepage": "https://www.mailwizz.com",
"license": "MIT",
"authors": [
{
"name": "twisted1919",
"email": "support@mailwizz.com"
}
],
"require": {
"php": ">=5.2"
},
"autoload": {
"files": ["MailWizzApi/autoload.php"]
},
"require-dev": {
"phpstan/phpstan": "^0.12.9",
"phpunit/phpunit": "^7.5",
"friendsofphp/php-cs-fixer": "^2.15"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"fix-style": "./vendor/bin/php-cs-fixer fix .",
"analyse": "./vendor/bin/phpstan analyse . -c phpstan.neon --level max --memory-limit=-1"
}
}