Skip to content

Commit 8e8477e

Browse files
committed
Add .doctrine-project.json to root of the project.
1 parent b776993 commit 8e8477e

File tree

2 files changed

+60
-2
lines changed

2 files changed

+60
-2
lines changed

.doctrine-project.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"active": true,
3+
"name": "Database Abstraction Layer",
4+
"shortName": "DBAL",
5+
"slug": "dbal",
6+
"docsSlug": "doctrine-dbal",
7+
"versions": [
8+
{
9+
"name": "3.0",
10+
"branchName": "develop",
11+
"slug": "latest",
12+
"upcoming": true
13+
},
14+
{
15+
"name": "2.9",
16+
"branchName": "master",
17+
"slug": "2.9",
18+
"upcoming": true
19+
},
20+
{
21+
"name": "2.8",
22+
"branchName": "2.8",
23+
"slug": "2.8",
24+
"current": true,
25+
"aliases": [
26+
"current",
27+
"stable"
28+
]
29+
},
30+
{
31+
"name": "2.7",
32+
"branchName": "2.7",
33+
"slug": "2.7",
34+
"maintained": false
35+
},
36+
{
37+
"name": "2.6",
38+
"branchName": "2.6",
39+
"slug": "2.6",
40+
"maintained": false
41+
},
42+
{
43+
"name": "2.5",
44+
"branchName": "2.5",
45+
"slug": "2.5",
46+
"maintained": false
47+
}
48+
]
49+
}

composer.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
{
22
"name": "doctrine/dbal",
33
"type": "library",
4-
"description": "Database Abstraction Layer",
5-
"keywords": ["dbal", "database", "persistence", "queryobject"],
4+
"description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection, schema management and PDO abstraction.",
5+
"keywords": [
6+
"php",
7+
"mysql",
8+
"pgsql",
9+
"dbal",
10+
"database",
11+
"abstraction",
12+
"persistence",
13+
"queryobject"
14+
],
615
"homepage": "http://www.doctrine-project.org",
716
"license": "MIT",
817
"authors": [

0 commit comments

Comments
 (0)