-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 857 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 857 Bytes
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
{
"name": "yaoi/database",
"type": "library",
"description": "Database abstraction layer for PHP",
"keywords": ["framework"],
"homepage": "https://github.com/php-yaoi/database",
"license": "MIT",
"authors": [
{
"name": "Viacheslav Poturaev",
"email": "vearutop@gmail.com",
"homepage": "https://github.com/vearutop"
}
],
"require": {
"php": ">=5.3.0",
"php-yaoi/php-yaoi": "^1.0|dev-master",
"swaggest/json-schema": "^0.4.0"
},
"require-dev": {
"codeclimate/php-test-reporter": "0.1.2",
"phpunit/phpunit": "4.8.23"
},
"autoload": {
"psr-4": {
"Yaoi\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yaoi\\Database\\Tests\\": "tests/src/"
}
},
"scripts": {
"test": "php -dxdebug.coverage_enable=1 ./vendor/bin/phpunit --coverage-text"
}
}