mirror of
https://github.com/fzaninotto/Faker.git
synced 2025-06-01 10:25:15 +02:00
44 lines
875 B
JSON
44 lines
875 B
JSON
{
|
|
"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"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.2"
|
|
},
|
|
"require-dev": {
|
|
"ext-intl": "*",
|
|
"phpunit/phpunit": "^8.5.2",
|
|
"squizlabs/php_codesniffer": "^3.5.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Faker\\": "src/Faker/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Faker\\Test\\": "test/Faker/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.9"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
}
|
|
}
|