-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.17 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
{
"name": "ipagdevs/schema-builder",
"description": "A powerful library for building schema-driven data models in PHP.",
"type": "library",
"license": "MIT",
"keywords": [
"schema",
"builder",
"data-model",
"validation",
"ipag"
],
"homepage": "https://github.com/ipagdevs/schema-builder",
"autoload": {
"psr-4": {
"IpagDevs\\": "src/"
}
},
"authors": [
{
"name": "Vitor Kubinyete",
"email": "vitorkubinyete@hotmail.com"
},
{
"name": "Lucas Milhorança",
"email": "lucas.milhoranca@ipag.com.br"
},
{
"name": "João Hernandes",
"email": "jhernandes@ipag.com.br"
}
],
"autoload-dev": {
"psr-4": {
"IpagDevs\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"symfony/polyfill-php81": "^1.28",
"symfony/polyfill-php80": "^1.28"
},
"require-dev": {
"symfony/var-dumper": "^5.4",
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^2.1"
}
}