-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
47 lines (47 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "javanile/moldable",
"type": "library",
"version": "0.0.52",
"description": "Uknown PHP Database Abstraction Layer",
"keywords": [
"moldable",
"schemadb",
"database",
"persistence",
"queryobject"
],
"homepage": "http://www.javanile.org",
"license": "MIT",
"authors": [
{
"name": "Francesco Bianco",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/javanile/moldable"
}
],
"autoload": {
"psr-4": {
"Javanile\\Moldable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Javanile\\Moldable\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6",
"monolog/monolog": "^1.23",
"danielstjules/stringy": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7.19",
"javanile/producer": "^0.3.5",
"illuminate/database": "^5.4"
}
}