-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 891 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 891 Bytes
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
{
"name": "memio/validator",
"license": "MIT",
"type": "library",
"description": "Memio's validator, used to check built models again a pre-defined set of rules",
"keywords": ["generator", "PHP", "code"],
"homepage": "http://memio.github.io/memio",
"authors": [
{
"name": "Loïc Faugeron",
"email": "faugeron.loic@gmail.com",
"homepage": "http://gnugat.github.io",
"role": "Developer"
}
],
"autoload": { "psr-4": {
"Memio\\Validator\\": "src/Memio/Validator"
}},
"require": {
"php": "^7.2 || ^8.0",
"memio/model": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19.3",
"phpspec/phpspec": "^6.1 || ^7.0",
"phpstan/phpstan": "1.12.32",
"rector/rector": "^1.2.10",
"rector/swiss-knife": "^2.3"
}
}