-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 1.13 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
{
"name": "mezon/pop3-client",
"description": "Simple POP3 client",
"license": "MIT",
"authors": [
{
"name": "Dodonov Alexey",
"email": "alexey@dodonov.pro",
"homepage": "http://gdzone.ru",
"role": "Founder"
}
],
"require-dev": {
"phpunit/phpunit": "^8.5",
"vimeo/psalm": "^4.2"
},
"require": {
"php": ">=7.2.0"
},
"support": {
"email": "alexey@dodonov.pro",
"issues": "https://github.com/alexdodonov/mezon-pop3-client/issues",
"source": "https://github.com/alexdodonov/mezon-pop3-client"
},
"minimum-stability": "dev",
"homepage": "https://github.com/alexdodonov/mezon-pop3-client",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mezon\\": "./Mezon"
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --order-by=random",
"psalm": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache",
"infection" : "php ./vendor/infection/infection/bin/infection --threads=4 --min-msi=100",
"psalm-self": "php ./vendor/vimeo/psalm/psalm --config=psalm-self.xml --show-info=true --no-cache",
"test-unit": "php ./vendor/phpunit/phpunit/phpunit --testsuite unit --order-by=random"
}
}