Skip to content

Commit

Permalink
Add .doctrine-project.json to root of the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwage committed Aug 31, 2018
1 parent f4c8489 commit 46a880a
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 2 deletions.
43 changes: 43 additions & 0 deletions .doctrine-project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"active": true,
"name": "Object Relational Mapper",
"shortName": "ORM",
"slug": "orm",
"docsSlug": "doctrine-orm",
"versions": [
{
"name": "3.0",
"branchName": "master",
"slug": "latest",
"upcoming": true
},
{
"name": "2.7",
"branchName": "2.7",
"slug": "2.7",
"upcoming": true
},
{
"name": "2.6",
"branchName": "2.6",
"slug": "2.6",
"current": true,
"aliases": [
"current",
"stable"
]
},
{
"name": "2.5",
"branchName": "2.5",
"slug": "2.5",
"maintained": false
},
{
"name": "2.4",
"branchName": "2.4",
"slug": "2.4",
"maintained": false
}
]
}
14 changes: 12 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
{
"name": "doctrine/orm",
"type": "library",
"description": "Object-Relational-Mapper for PHP",
"keywords": ["orm", "database"],
"description": "PHP object relational mapper (ORM) that sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL). This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.",
"keywords": [
"php",
"orm",
"mysql",
"object",
"data",
"mapper",
"mapping",
"query",
"dql"
],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
Expand Down

0 comments on commit 46a880a

Please sign in to comment.