-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
48 lines (48 loc) · 1.36 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
{
"name": "mezon/router",
"description": "Small and fast routing framework",
"license": "MIT",
"authors": [
{
"name": "Dodonov Alexey",
"email": "[email protected]",
"homepage": "http://gdzone.ru",
"role": "Founder"
}
],
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mezon/functional": "^1.0",
"vimeo/psalm": "^4.2",
"infection/infection": "^0.21.5"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/alexdodonov/mezon-router/issues",
"source": "https://github.com/alexdodonov/mezon-router"
},
"minimum-stability": "dev",
"homepage": "https://github.com/alexdodonov/mezon-router",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mezon\\Router\\": "Mezon/Router/"
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --order-by=random",
"debug": "php ./vendor/phpunit/phpunit/phpunit --filter testRealLifeExample1 --order-by=random",
"psalm": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache",
"infection": "php ./vendor/infection/infection/bin/infection --min-msi=82",
"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
}
}
}