This changes nothing, don't look

This commit is contained in:
2023-11-01 18:13:06 -04:00
commit f12a0a9b38
61 changed files with 14431 additions and 0 deletions

38
composer.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "siteworxpro/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": "^8.1"
},
"require-dev": {
"ext-intl": "*",
"phpunit/phpunit": "^9.5.10",
"squizlabs/php_codesniffer": "^3.6.1",
"slevomat/coding-standard": "^7.0.18"
},
"autoload": {
"psr-4": {
"Siteworx\\Faker\\": "src/Faker/"
}
},
"autoload-dev": {
"psr-4": {
"Siteworx\\Faker\\Test\\": "test/Faker/"
}
},
"config": {
"sort-packages": true
}
}