Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
/vendor-bin/rector/vendor/
/.php-cs-fixer.cache
/composer.lock
/.idea
/.vscode
3 changes: 0 additions & 3 deletions .php-cs-fixer.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
declare(strict_types=1);

$finder = PhpCsFixer\Finder::create()
->notPath([
'Fixture/Enum/BackedEnum.php',
])
->ignoreDotFiles(false)
->in(__DIR__ . '/test');

Expand Down
17 changes: 5 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,17 @@
"data"
],
"license": "MIT",
"authors": [
{
"name": "François Zaninotto"
}
],
"require": {
"php": "^7.4 || ^8.0",
"psr/container": "^1.0 || ^2.0",
"symfony/deprecation-contracts": "^2.2 || ^3.0"
"php": "^8.2",
"fakerphp/core": "dev-main",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"ext-intl": "*",
"bamarni/composer-bin-plugin": "^1.4.1",
"phpunit/phpunit": "^9.5.26",
"symfony/phpunit-bridge": "^5.4.16"
"symfony/phpunit-bridge": "^5.4.16",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
Expand All @@ -38,9 +34,6 @@
"fzaninotto/faker": "*"
},
"suggest": {
"ext-curl": "Required by Faker\\Provider\\Image to download images.",
"ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
"ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
"ext-mbstring": "Required for multibyte Unicode string functionality."
},
"config": {
Expand Down
Loading