Skip to content

Commit

Permalink
Cleanup (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik authored Aug 26, 2024
1 parent 0e34d0e commit b69dfe1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
The package provides a set of widgets to help with dynamic server-side generation of HTML forms.
The following widgets are available out of the box:

- input fields: `Checkbox`, `CheckboxList`, `Date`, `DateTime`, `DateTimeLocal`, `Email`, `File`, `Hidden`, `Image`,
`Number`, `Password`, `RadioList`, `Range`, `Select`, `Telephone`, `Text`, `Textarea`, `Time`, `Url`;
- input fields: `Checkbox`, `CheckboxList`, `Date`, `DateTimeLocal`, `Email`, `File`, `Hidden`, `Image`,
`Number`, `Password`, `RadioList`, `Range`, `Select`, `Telephone`, `Text`, `Textarea`, `Time`, `Url`;
- buttons: `Button`, `ResetButton`, `SubmitButton`;
- group widgets: `ButtonGroup`, `Fieldset`.
- other: `ErrorSummary`.
Expand All @@ -32,7 +32,6 @@ These themes are available out of the box:
## Requirements

- PHP 8.1 or higher.
- `mbstring` PHP extension.

## Installation

Expand Down
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"infection/infection": "^0.26.19",
"maglnet/composer-require-checker": "^4.7",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.0.0",
"rector/rector": "^1.2",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^5.21"
},
Expand All @@ -41,9 +41,6 @@
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"config-plugin-options": {
"source-directory": "config"
},
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/en/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
- [Fields' enrichment from validation rules](validation-rules-enrichment.md)
- [Input data](input-data.md)
- [Pure fields](pure-fields.md)
- [Creating custom fields](creating-fields.md)
- [Creating custom fields](creating-custom-fields.md)
2 changes: 0 additions & 2 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector;
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
use Rector\Set\ValueObject\LevelSetList;
Expand All @@ -25,7 +24,6 @@

$rectorConfig->skip([
ClosureToArrowFunctionRector::class,
JsonThrowOnErrorRector::class,
ReadOnlyPropertyRector::class,
]);
};

0 comments on commit b69dfe1

Please sign in to comment.