-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
30 lines (30 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
{
"name": "antares/accessible",
"type": "library",
"description": "PHP library that allows you to define your class' getters, setters and constructor with docblock annotations.",
"keywords": ["access", "get", "set", "pojo", "popo", "class", "properties", "getter", "setter", "annotation"],
"homepage": "https://github.com/antares993/Accessible",
"license": "MIT",
"authors": [
{"name": "Antarès Tupin", "email": "antares993@gmail.com"}
],
"require": {
"php": ">=5.4.0",
"doctrine/annotations": ">=1.2.0",
"doctrine/cache": ">=1.0",
"doctrine/inflector": ">=1.0",
"symfony/validator": ">=2.6"
},
"require-dev": {
"phpunit/phpunit": ">=4.0",
"doctrine/collections": ">=1.0"
},
"autoload": {
"psr-0": {"Accessible\\": "lib/"}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}