-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP8 support #83
PHP8 support #83
Conversation
Makefile
Outdated
@@ -38,6 +38,8 @@ schemas/openapi-v3.0.json: vendor/oai/openapi-specification/schemas/v3.0/schema. | |||
schemas/openapi-v3.0.yaml: vendor/oai/openapi-specification/schemas/v3.0/schema.yaml | |||
cp $< $@ | |||
|
|||
php-cs-fixer.phar: | |||
wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.16.7/php-cs-fixer.phar && chmod 777 php-cs-fixer.phar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.16.7/php-cs-fixer.phar && chmod 777 php-cs-fixer.phar | |
wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.16.7/php-cs-fixer.phar && chmod +x php-cs-fixer.phar |
Thanks for these changes. Tests are failing, seems there is another case related to |
@cebe Updated the PR 👍 Locally tests are failing for |
Thank you! I'll check that. |
whatever happened to travis, their open source tests are having a large backlog, can't check the tests for different systems this way :-/ |
Basically, travis-ci.org is shutting down soon. And now there will be no free builds for OSS projects. 🤷♂️ If I understood correctly. |
seems like that, I'm implementing github actions right now. |
* php8: improved types for phpstan PHP8 support
Merged your changes, will clean up the build on master. Thank you! |
Thank you @cebe |
Tests are failing here due to a symfony bug 😆 symfony/symfony#39521 |
This PR:
php-cs-fixer
from composer.json and downloads phar on launch