-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 895 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
{
"name": "yobrx/doctrine-simple-timestampable",
"type": "library",
"description": "Doctrine2 simple timestampable behavior",
"keywords": [
"behavior",
"doctrine2",
"extensions",
"timestampable"
],
"homepage": "http://www.yoann.brieux.net/",
"license": "MIT",
"authors": [
{
"name": "Yoann BRIEUX",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=5.5",
"doctrine/common": "~2.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"doctrine/orm": ">=2.5.0",
"doctrine/common": ">=2.5.0",
"symfony/yaml": "~2.6|~3.0"
},
"suggest": {
"doctrine/orm": "to use the extensions with the ORM"
},
"autoload": {
"psr-0": {
"Yobrx\\Doctrine\\SimpleTimestampableBundle": ""
}
},
"target-dir": "Yobrx/Doctrine/SimpleTimestampableBundle"
}