-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.26 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
{
"name": "mezon/conf",
"description": "Small conf routine",
"license": "MIT",
"authors": [
{
"name": "Dodonov Alexey",
"email": "alexey@dodonov.pro",
"homepage": "http://gdzone.ru",
"role": "Founder"
}
],
"require-dev": {
"phpunit/phpunit": "^8.5",
"phpunit/php-token-stream": "3.1.2",
"vimeo/psalm": "^4.2",
"infection/infection": "^0.21.5"
},
"require": {
"php": ">=7.2.0"
},
"support": {
"email": "alexey@dodonov.pro",
"issues": "https://github.com/alexdodonov/mezon-conf/issues",
"source": "https://github.com/alexdodonov/mezon-conf"
},
"minimum-stability": "dev",
"homepage": "https://github.com/alexdodonov/mezon-conf",
"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"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}