-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.64 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
56
{
"name": "mezon/application",
"description": "Small application script",
"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",
"infection/infection": "^0.21.5"
},
"require": {
"php": ">=7.2.0",
"mezon/conf": "1.2.*",
"mezon/html-template": ">=1.1.4 <1.2.0",
"mezon/http-request-params": "1.0.*",
"mezon/infrastructure-layer": "1.2.*",
"mezon/presenter": "1.3.*",
"mezon/rest-exception": "1.0.*",
"mezon/router": "1.5.*",
"mezon/template-engine": "1.0.*",
"mezon/utils": ">=1.0.9"
},
"support": {
"email": "alexey@dodonov.pro",
"issues": "https://github.com/alexdodonov/mezon-application/issues",
"source": "https://github.com/alexdodonov/mezon-application"
},
"minimum-stability": "dev",
"homepage": "https://github.com/alexdodonov/mezon-application",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mezon\\": "./Mezon/"
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --order-by=random",
"test-self": "php ./vendor/phpunit/phpunit/phpunit --testsuite=self --order-by=random",
"psalm": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache",
"psalm-self": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache --config=psalm-self.xml",
"infection": "php ./vendor/infection/infection/bin/infection --threads=4 --min-msi=77",
"debug": "php ./vendor/phpunit/phpunit/phpunit --order-by=random --random-order-seed 1642345095"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}