-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 952 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
{
"name": "yosmanyga/resource",
"description": "Provides tools to define and load resources",
"type": "library",
"keywords": ["resource", "reader", "loader"],
"license": "MIT",
"authors": [
{
"name": "Yosmany Garcia",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/yaml": "~2.3",
"symfony/finder": "~2.3",
"composer/composer": "dev-master",
"yosmanyga/validation": "dev-master"
},
"suggest": {
"symfony/yaml": "For reading yaml file resources",
"symfony/finder": "For reading directory resources",
"composer/composer": "For using a transformer for composer vendor files",
"yosmanyga/validation": "For using base definition"
},
"autoload": {
"psr-0": { "Yosmanyga\\Resource": "src/" }
}
}