From c2ee3a0ed35e1caad4597fc1eb32f1dc25259cb6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 31 Jul 2016 17:41:28 +0200 Subject: php-doctrine-datafixtures: sync with Fedora --- composer.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f5389f9 --- /dev/null +++ b/composer.json @@ -0,0 +1,34 @@ +{ + "name": "doctrine/data-fixtures", + "type": "library", + "description": "Data Fixtures for all Doctrine Object Managers", + "keywords": ["database"], + "homepage": "http://www.doctrine-project.org", + "license": "MIT", + "authors": [ + {"name": "Jonathan Wage", "email": "jonwage@gmail.com"} + ], + "require": { + "php": ">=5.3.2", + "doctrine/common": "~2.2" + }, + "require-dev": { + "doctrine/orm": "~2.2" + }, + "suggest": { + "doctrine/orm": "For loading ORM fixtures", + "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures", + "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures" + }, + "autoload": { + "psr-0": { "Doctrine\\Common\\DataFixtures": "lib/" } + }, + "autoload-dev": { + "psr-0": { "Doctrine\\Tests": "tests/" } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} -- cgit