-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 1.06 KB
/
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
{
"name": "onemightyroar/php-activerecord-components",
"description": "Useful common components for a php-activerecord based project",
"type": "library",
"keywords": ["activerecord", "orm", "database", "sql", "nosql", "redis"],
"homepage": "http://onemightyroar.com/",
"license": "MIT",
"authors": [
{
"name": "Trevor N. Suarez",
"email": "[email protected]",
"homepage": "http://about.me/tnsuarez"
},
{
"name": "Brian C. Muse",
"email": "[email protected]",
"homepage": "http://brianmuse.com/"
}
],
"require": {
"php": ">=5.3.0",
"php-activerecord/php-activerecord": "1.1.x"
},
"require-dev": {
"doctrine/cache": "^1.4"
},
"suggest": {
"onemightyroar/predis-toolkit": "To make use of the AbstractRedisIntegrationModel",
"doctrine/cache": "To easily implement ActiveRecord caching and the included adapter/translator"
},
"autoload": {
"psr-0": { "OneMightyRoar\\PHP_ActiveRecord_Components\\": "src/" }
}
}