Skip to content

Commit

Permalink
refactor: porting controllers to php8
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavs-gutmanis committed Mar 7, 2022
1 parent 7144337 commit b574a5c
Show file tree
Hide file tree
Showing 199 changed files with 2,519 additions and 2,374 deletions.
4 changes: 2 additions & 2 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHP80Migration' => true,
'@PHPUnit75Migration:risky' => true,
'@PhpCsFixer' => true,
'array_indentation' => true,
'array_syntax' => ['syntax' => 'short'],
'combine_nested_dirname' => true,
'linebreak_after_opening_tag' => true,
'list_syntax' => ['syntax' => 'long'],
'list_syntax' => ['syntax' => 'short'],
'protected_to_private' => false,
'single_trait_insert_per_statement' => true,
'ternary_to_null_coalescing' => true,
'visibility_required' => ['elements' => ['property', 'method']],
])
->setRiskyAllowed(true)
->setFinder($finder);
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "solspace/craft-freeform",
"description": "The most reliable, intuitive and powerful form builder for Craft.",
"version": "3.13.4",
"version": "4.0.0",
"type": "craft-plugin",
"authors": [
{
Expand All @@ -10,8 +10,8 @@
}
],
"require": {
"craftcms/cms": "^4.0.0-alpha.1",
"composer/composer": "^1.0|^2.0.13",
"craftcms/cms": "^3.4.0",
"symfony/property-access": "^2.8|^3.0|^4.0|^5.0",
"symfony/finder": "^2.8|^3.0|^4.0|^5.0",
"symfony/filesystem": "^2.8|^3.0|^4.0|^5.0",
Expand Down
Loading

0 comments on commit b574a5c

Please sign in to comment.