-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 749 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 749 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": "flowrange/validation",
"description": "Data validation/filtration library",
"type": "library",
"version": "0.2.0-dev",
"authors": [
{
"name": "Florent Geffroy",
"email": "contact@flowrange.fr",
"homepage": "http://www.flowrange.fr/",
"role": "Developper"
}
],
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"Flowrange\\Validation\\": "src/"
},
"files": ["src/Rule/functions.php", "src/Filter/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Flowrange\\Validation\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}