summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-09-27 07:20:44 +0200
committerRemi Collet <fedora@famillecollet.com>2016-09-27 07:20:44 +0200
commit437047123fabbfa31513c9e1ef04d3aa922e3fc9 (patch)
treee264097da024d332d91c277cbc3491c90fb36fa6 /composer.json
parentde031e9f5df9327e05e058c52b0e3b955cc5d114 (diff)
php-doctrine-dbal: 2.5.5 (backported from Fedora)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json37
1 files changed, 37 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..7b10ef5
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,37 @@
+{
+ "name": "doctrine/dbal",
+ "type": "library",
+ "description": "Database Abstraction Layer",
+ "keywords": ["dbal", "database", "persistence", "queryobject"],
+ "homepage": "http://www.doctrine-project.org",
+ "license": "MIT",
+ "authors": [
+ {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"},
+ {"name": "Roman Borschel", "email": "roman@code-factory.org"},
+ {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
+ {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
+ ],
+ "require": {
+ "php": ">=5.3.2",
+ "doctrine/common": ">=2.4,<2.7-dev"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*",
+ "symfony/console": "2.*||^3.0"
+ },
+ "suggest": {
+ "symfony/console": "For helpful console commands such as SQL execution and import of files."
+ },
+ "bin": ["bin/doctrine-dbal"],
+ "autoload": {
+ "psr-0": { "Doctrine\\DBAL\\": "lib/" }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.5.x-dev"
+ }
+ },
+ "archive": {
+ "exclude": ["!vendor", "tests", "*phpunit.xml", ".travis.yml", "build.xml", "build.properties", "composer.phar"]
+ }
+}