-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (42 loc) · 976 Bytes
/
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
{
"name": "twodee/phypes",
"type": "library",
"homepage": "https://github.com/2dsharp/Phypes",
"license": "GPL-3.0",
"description": "Validation components for commonly used data with value objects.",
"keywords": ["validation", "forms", "data", "value objects"],
"authors": [
{
"name": "Dedipyaman Das",
"email": "2d@twodee.me",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Phypes\\": "src/" },
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Phypes\\UnitTest\\" : "tests/UnitTests/"
}
},
"require": {
"php": ">=7.2",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^7",
"mockery/mockery": "^1.1"
},
"config": {
"platform": {
"php": "7.2.9"
},
"platform-dev": {
"php": "7.2.9"
}
}
}