-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add correct entries for hosts * Change deprecated Route * Add return types * Refactor deprecation * Map port 3306 * Update SF and add ext-intl as requirement * Rearrange constructor params that required is before optional * Replace deprecated Twig_Extension with AbstractExtension * Add return type * Order params to required first * Add rector * Add semicolon to fix deprecation * Add rector * Replace session with requestStack * Refactor to use requestStack * Refactor to use requestStack * Fix mock error in buildCommand * Make test true in framework * Make every failing testsuite return exit codes * Apply rector * Refactor deprecated twig functions * Add typed properties * Format json * Fix controller method * Change to attribute * Add getProjectDir to Kernel * Update phpunit * Rector updates and typed properties * Add return type for getBlcokPrefix * Add return type to fix deprecation warning * Add return type to fix deprecation warning * Add return type to fix deprecation warning * Add return type to fix deprecation warning * Add types * Add phpcbf to qa * Add execute permission * Add strict type rule * Run PHPCBF * Upgrade to 6.4 and fix flashbag * Mock UserInterface instead of TokenInterface * Change flashBag to requestStack * Change flashBag to requestStack * Change flashBag to requestStack * Replace deprecated get * Add correct versioning * Phase out sensio framework extra bundle * Add type to id * Get session from request * Add extension requirement * Refactor container get and return types Move FQCN to use * Remove annotation * Remove unused injected services * Remove FQCN * Add types * Add types and remove unused getter * Add exception if read does not return content * Add test for unknown headers * Remove missing service * Fix twig path * Remove dead code * Replace annotation to attribute route * Replace annotation to attribute route * Run phpcbf * Add php extensions used * Replace deprecated method * Remove unused dependency * Run updates * Add custom exception * Replace annotation assert with attribute * Fix deprecation warnings * Update recipe * Update recipe * Update recipe * Update recipe * Fix deprecations * Add types * Run phpcbf * Install phpstan * Suppress PHPMD warnings It is not in scope to reduce the complexity of these classes at this moment in time. * Add strict typing * Remove obsolete check because op array type hint * Replace ramsey with symfony uid component * Docker: Use the new php82 images from the openconext-basecontainers project * Composer.json: Add archive directories so composer archive works * Resolve projectdir * GHA: Change workflow file to reflect the change from fpm to php as a module. A new container is published, with the name "spdashboard" * Docker: Use an apache file for php as module in stead of php fpm * Docker: Override the allow_url_fopen to on. Needed to download images for the logos * Remove commented strict types * Remove left over * Remove phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc and type params * Remove obsolete phpdoc * Remove unused rule * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc an typed * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc * Remove obsolete phpdoc, reverted unintended rector change * Fix deprecations (8.2) * Add node:20 * Remove unused service * GHA test integration: Use the new php82 containers * Use flashes * Add patch for TinymceBundle * Docker: Add version info to environment variables * Docker: Add version info to environment variables * GHA: Remove deprecations * Add CSP for translations in Apache config * Apache config: Use header unset in stead of always unset * Change checkout version * Use node 20 * Updating composer.json * Remove obsolete docblocks * Updating rector * Change expectation * Remove more than 1 empty lines * Fix test * Docker: Allow composer to be run as root, avoiding build issues * Add phpstan Also, phpstan compains about empty return statements, so had to implement a fake return on IssueRepository * Make phpstan executable * Add comment to explain usage in compilerpass * Add phpstan config file * Add 6.0.0 release --------- Co-authored-by: Bart Geesink <[email protected]>
- Loading branch information
Showing
359 changed files
with
11,186 additions
and
7,490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env sh | ||
|
||
cd $(dirname $0)/../../ | ||
|
||
# https://github.com/squizlabs/PHP_CodeSniffer/wiki/Fixing-Errors-Automatically | ||
./vendor/bin/phpcbf --standard=ci/qa/phpcs.xml ./src $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd $(dirname $0)/../../ | ||
|
||
vendor/bin/phpstan analyze --memory-limit=-1 --no-ansi -c ./ci/qa/phpstan.neon |
Oops, something went wrong.