1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-20 15:31:50 +02:00
Faker/composer.json
2020-10-23 19:34:39 +02:00

54 lines
1.2 KiB
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"
},
{
"name": "Andreas Möller",
"email": "am@localheinz.com"
},
{
"name": "Pim Jansen"
}
],
"require": {
"php": "^7.2"
},
"require-dev": {
"ext-intl": "*",
"dealerdirect/phpcodesniffer-composer-installer": "~0.7.0",
"phpunit/phpunit": "^8.5.8",
"slevomat/coding-standard": "^6.4.1",
"squizlabs/php_codesniffer": "^3.5.8"
},
"autoload": {
"psr-4": {
"Faker\\": "src/Faker/"
}
},
"autoload-dev": {
"psr-4": {
"Faker\\Test\\": "test/Faker/",
"Faker\\Test\\Fixture\\": "test/Fixture/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.9-dev"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}