Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub fn module(module: ModuleBuilder) -> ModuleBuilder {
Use [`cargo-php`] to build IDE stubs and install the extension:

```text
$ cargo install cargo-php
$ cargo install cargo-php --locked
Installing cargo-php v0.1.0
$ cargo php stubs --stdout
Compiling example-ext v0.1.0
Expand Down Expand Up @@ -148,7 +148,7 @@ best resource at the moment. This can be viewed at [docs.rs].
functionality to be cross-platform is on the roadmap.
- To build the application in `DEBUG` mode on Windows,
you must have a `PHP SDK` built with the `DEBUG` option enabled
and specify the `PHP_LIB` to the folder containing the lib files.
and specify the `PHP_LIB` to the folder containing the lib files.
For example: set `PHP_LIB=C:\php-sdk\php-dev\vc16\x64\php-8.3.13-src\x64\Debug_TS`.

[vectorcall]: https://docs.microsoft.com/en-us/cpp/cpp/vectorcall?view=msvc-170
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Installs extensions and generates stub files for PHP extensions generated with

## Installation

Install with Cargo: `cargo install cargo-php`.
Install with Cargo: `cargo install cargo-php --locked`.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion guide/src/getting-started/cargo-php.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The subcommand is installed through composer like any other Rust CLI
application:

```text
$ cargo install cargo-php
$ cargo install cargo-php --locked
```

You can then call the application via `cargo php` (assuming the cargo
Expand Down
Loading