Skip to content

Commit e09715d

Browse files
committed
Add composer package definition
1 parent 5456397 commit e09715d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

composer.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "na2axl/opendb",
3+
"description": "The lightweight PHP ORM",
4+
"type": "library",
5+
"require-dev": {
6+
"phpunit/phpunit": "^7"
7+
},
8+
"license": "MIT",
9+
"authors": [
10+
{
11+
"name": "Axel Nana",
12+
"email": "ax.lnana@outlook.com"
13+
}
14+
],
15+
"require": {
16+
"php": "^7.1.10"
17+
},
18+
"keywords": [
19+
"orm",
20+
"database",
21+
"pdo"
22+
],
23+
"autoload": {
24+
"psr-4": {
25+
"OpenDB\\": "src/"
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)