-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 889 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
{
"name": "thinkscape/activerecord",
"description": "Modern ActiveRecord implementation for PHP 5.4+",
"keywords": [
"activerecord",
"active",
"record",
"db",
"orm"
],
"homepage": "https://github.com/Thinkscape/ActiveRecord",
"license": "MIT",
"autoload": {
"psr-0": {
"Thinkscape\\": "src",
"ThinkscapeTest\\": "tests/"
}
},
"require": {
"php": ">=5.4.3"
},
"require-dev": {
"zendframework/zend-db" : "2.2.*",
"doctrine/dbal" : "2.3.*",
"phpunit/phpunit" : "~3.7",
"satooshi/php-coveralls": "~0.6"
},
"suggest" : {
"zendframework/zend-db" : "Zend\\Db integration.",
"doctrine/dbal" : "Doctrine DBAL integration.",
"pecl-mongo" : "MongoDB integration"
}
}