-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
81 lines (81 loc) · 2.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "mezon/mezon",
"description": "Simple, small and fast php framework for creating microservies",
"license": "MIT",
"authors": [
{
"name": "Dodonov Alexey",
"email": "[email protected]",
"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",
"phpdocumentor/phpdocumentor": "^3.1"
},
"require": {
"php": ">=7.2.0",
"mezon/ajax-application": ">=1.0.0",
"mezon/application": ">=3.0.0",
"mezon/application-actions": ">=1.0.4",
"mezon/cache": ">=1.0.0",
"mezon/cli": ">=1.0.6",
"mezon/common-application": ">=1.0.0",
"mezon/conf": ">=1.2.0",
"mezon/crud-service": ">=1.2.0",
"mezon/crud-service-client": ">=1.0.0",
"mezon/crud-service-collection": ">=1.0.0",
"mezon/crud-service-client-adapter": ">=1.0.0",
"mezon/custom-client": ">=1.0.0",
"mezon/dns-client": ">=1.0.0",
"mezon/field": ">=1.1.0",
"mezon/formal-grammar": ">=1.0.0",
"mezon/functional": ">=1.1.0",
"mezon/gentella": ">=1.1.0",
"mezon/gui": ">=1.3.1",
"mezon/pdocrud": ">=1.5.0",
"mezon/presenter": ">=1.3.0",
"mezon/request-params": ">=1.0.13",
"mezon/router": ">=1.5.0",
"mezon/security": ">=1.1.0",
"mezon/selenium-low-level-tools": ">=1.2.0",
"mezon/service": ">=1.6.0",
"mezon/service-client": ">=1.0.0",
"mezon/service-logic": ">=1.3.0",
"mezon/service-transport": ">=1.5.0",
"mezon/singleton": ">=1.0.0",
"mezon/social-network": ">=1.0.0",
"mezon/template-engine": ">=1.0.0",
"mezon/utils": ">=1.0.0",
"mezon/variadic-model": ">=1.0.0"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/alexdodonov/mezon/issues",
"source": "https://github.com/alexdodonov/mezon"
},
"homepage": "https://github.com/alexdodonov/mezon",
"autoload": {
"psr-4": {
"Mezon\\": ""
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit --testsuit all --order-by=random",
"debug": "php ./vendor/phpunit/phpunit/phpunit --testsuit all --order-by=random --random-order-seed 1643146030",
"psalm": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache",
"infection": "php ./vendor/infection/infection/bin/infection --min-msi=57",
"doc": "php ./vendor/bin/phpdoc.php"
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"infection/extension-installer": true,
"symfony/flex": true
}
}
}