-
Notifications
You must be signed in to change notification settings - Fork 73
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
Allow PHP 8.3 and Symfony 7.0 #93
Conversation
* add sshPipelining test * update readme with more development goals * Feature/php 8 migration (maschmann#68) * move to php 8 compat only * fix phpstan config * fix phpcs issues * add phpunit and printer * remove version from composer.json * add phpunit as dev dependency to keep scrutinizer happy * Added version 6 for symfony/process to the required versions (maschmann#75) * fix phpcs, local versions, add 8.1 to travis * Add new badges, remove travis & Scrutinizer, switch to GH actions * Add more useful names to actions >.< * remove travis file * fix merge oversight Co-authored-by: Roy Kaldung <[email protected]>
* github workflow update * move to different phpunit runner * remove lock file, open dependencies * ignore lock file, update actions * move to build matrix
…not change between versions
Updates requires versions for psr/log thx @RoussKS for researching and contributing!
…single quotes as required.
…fony process escaping
Allow JSON Format Ansible --extra-vars
Fix error output if no callback is provided
Restore --extra-var JSON string tests
# Conflicts: # .github/workflows/static-analysis.yml # Asm/Ansible/Command/AnsiblePlaybook.php # composer.json
Hi, did you try this with the unit tests on 8.3? After some search, I found this php 8.3 issue here. // edit You can check this in feature/add-docker-dev - I've merged current development and did some rework on the tests, setup etc. // edit #2 My bad. Using vfs://... as working dir for the process creation in tests breaks with php 8.3's changed behavior of proc_open. Which was a bug in the first place (according to the link from above). Seems it's all working now. |
Allow PHP 8.3 and Symfony 7.0