There was an error while loading. Please reload this page.
1 parent c55e6ca commit 1935118Copy full SHA for 1935118
2 files changed
.github/workflows/build.yml
@@ -596,6 +596,14 @@ jobs:
596
- name: Build PHP extension
597
run: |
598
export PHP_CONFIG=$(which php-config)
599
+ echo "PHP binary version:"
600
+ php --version
601
+ echo "php-config version:"
602
+ php-config --version
603
+ echo "php-config include dir:"
604
+ php-config --include-dir
605
+ echo "PHP version number:"
606
+ php-config --vernum
607
cargo build --release
608
EXT_DIR=$(php -r "echo ini_get('extension_dir');")
609
if [[ "${{ matrix.os }}" == "macos-15" ]]; then
bindings/php/Cargo.toml
@@ -9,7 +9,7 @@ name = "css_inline_php"
9
crate-type = ["cdylib"]
10
11
[dependencies]
12
-ext-php-rs = "0.15.2"
+ext-php-rs = "=0.15.2"
13
rayon = "1"
14
15
[dependencies.css-inline]
0 commit comments