From 41631dce714515d7bf4d2282374dd32f9390daed Mon Sep 17 00:00:00 2001 From: William DURAND Date: Wed, 9 Nov 2011 13:38:37 +0100 Subject: [PATCH] Added composer.json --- composer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..7023ed52 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "fzaninotto/faker", + "type": "library", + "description": "Faker is a PHP library that generates fake data for you.", + "keywords": ["faker", "fixtures", "data"], + "license": "MIT", + "authors": [ + { + "name": "François Zaninotto", + "email": "" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-0": { "Faker": "src/" } + } +}