Require faker

This commit is contained in:
Oliver Davies 2019-02-14 18:50:54 +00:00
parent 41b308f1b6
commit d384398081
3 changed files with 55 additions and 1 deletions

View file

@ -62,6 +62,7 @@
} }
}, },
"require-dev": { "require-dev": {
"fzaninotto/faker": "^1.8",
"symfony/maker-bundle": "^1.11", "symfony/maker-bundle": "^1.11",
"symfony/test-pack": "^1.0", "symfony/test-pack": "^1.0",
"symfony/var-dumper": "4.2.*" "symfony/var-dumper": "4.2.*"

52
composer.lock generated
View file

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "ccd0911d9e64d0a7e474b2f57a50a49a", "content-hash": "734449da136b803395044a6a830c701f",
"packages": [ "packages": [
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
@ -2011,6 +2011,56 @@
], ],
"time": "2018-05-16T17:37:13+00:00" "time": "2018-05-16T17:37:13+00:00"
}, },
{
"name": "fzaninotto/faker",
"version": "v1.8.0",
"source": {
"type": "git",
"url": "https://github.com/fzaninotto/Faker.git",
"reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
"reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
"shasum": ""
},
"require": {
"php": "^5.3.3 || ^7.0"
},
"require-dev": {
"ext-intl": "*",
"phpunit/phpunit": "^4.8.35 || ^5.7",
"squizlabs/php_codesniffer": "^1.5"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.8-dev"
}
},
"autoload": {
"psr-4": {
"Faker\\": "src/Faker/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "François Zaninotto"
}
],
"description": "Faker is a PHP library that generates fake data for you.",
"keywords": [
"data",
"faker",
"fixtures"
],
"time": "2018-07-12T10:23:15+00:00"
},
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v4.2.0", "version": "v4.2.0",

View file

@ -5,6 +5,9 @@
"facebook/webdriver": { "facebook/webdriver": {
"version": "1.6.0" "version": "1.6.0"
}, },
"fzaninotto/faker": {
"version": "v1.8.0"
},
"guzzlehttp/guzzle": { "guzzlehttp/guzzle": {
"version": "6.3.3" "version": "6.3.3"
}, },