We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug I tried to enable php extention of xsl on php 5.5. But occured following error.
xsl
name: test_and_lint on: push jobs: test: name: Test runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: install modules run: | sudo apt update sudo apt install libxml2-dev libxslt-dev php-xml - name: Installing php5.5 uses: shivammathur/setup-php@v2 with: php-version: "5.5" extensions: mbstring, soap, xsl
But with php7.3 it succeses.
name: test_and_lint on: push: jobs: test: name: Test runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: install modules run: | sudo apt update sudo apt install libxml2-dev libxslt-dev php-xml - name: Installing php7.3 uses: shivammathur/setup-php@v2 with: php-version: "7.3" extensions: mbstring, soap, xsl
Is this a bug? Could you tell me how to resolve it?
Thanks.
Version
v1
v2
Runners
Operating systems
PHP versions
To Reproduce
Expected behavior
Screenshots/Logs
Additional context
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered:
@yuta-ron Fixed in shivammathur/php5-ubuntu@a82c0c0
Sorry, something went wrong.
shivammathur
No branches or pull requests
Describe the bug
I tried to enable php extention of
xsl
on php 5.5.But occured following error.
But with php7.3 it succeses.
Is this a bug?
Could you tell me how to resolve it?
Thanks.
Version
v1
orv2
.v2
v1
Runners
Operating systems
PHP versions
To Reproduce
Expected behavior
Screenshots/Logs
Additional context
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: