1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-20 23:39:51 +01:00

Merge pull request #18 from willdurand/master

Added composer.json file
This commit is contained in:
Francois Zaninotto 2011-11-09 05:16:59 -08:00
commit 5583af67b6

19
composer.json Normal file
View File

@ -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/" }
}
}