-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "mezon/crud-service",
"description": "Small crud-service 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"
},
"require": {
"php": ">=7.2.0",
"mezon/service": "1.6.*",
"mezon/filter": "1.0.*",
"mezon/fields-set": "1.0.*",
"mezon/security": "1.1.*",
"mezon/crud-service-model": "1.2.*",
"mezon/security-provider": ">=1.1.2 <1.2.0",
"mezon/service-logic": ">=1.3.1 <1.4.0"
},
"support": {
"email": "alexey@dodonov.pro",
"issues": "https://github.com/alexdodonov/mezon-crud-service/issues",
"source": "https://github.com/alexdodonov/mezon-crud-service"
},
"minimum-stability": "dev",
"homepage": "https://github.com/alexdodonov/mezon-crud-service",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Mezon\\": "./Mezon/"
}
},
"scripts": {
"test": "php ./vendor/phpunit/phpunit/phpunit",
"psalm": "php ./vendor/vimeo/psalm/psalm --show-info=true --no-cache"
}
}