mirror of
https://github.com/danog/ext-php-rs.git
synced 2024-12-03 18:17:45 +01:00
6df362b714
* started work on stub generator * Worked on stub CLI tool * Unused import * Account for namespaces in function and class names * Add support for docblocks on structs * Push Rust comments to stubs * Add indentation to stub generation * Add CLI application to install and generate stubs This time CLI application is defined on user side, called with `cargo run -- ..args..` * Export anyhow result * Add constants to stub file * Removed stub symbols No longer required as we are now building while also linking to PHP. Keeping the stubs causes the stubs to override the real symbols in the extension. * Fix stubs for real this time Removed stub symbols as they were being included in the extension dylib, fix by loading the PHP executable as a dylib, loading the required symbols globally. * Maybe actually fix stubs this time * Forgot to remove PHP binary loading * let's give this another go... cargo subcommand Now called via `cargo php <install,stubs>`. * Added `remove` command * Tidied up cargo-php, commented, set up CI * Fix return types with non-ident types * define namespace ordering * Fix tests, replace `Self` when in outer context * Moved allowed bindings into separate file * Update guide with CLI instructions
20 lines
623 B
TOML
20 lines
623 B
TOML
[package]
|
|
name = "cargo-php"
|
|
description = "Installs extensions and generates stub files for PHP extensions generated with `ext-php-rs`."
|
|
repository = "https://github.com/davidcole1340/ext-php-rs"
|
|
homepage = "https://github.com/davidcole1340/ext-php-rs"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["php", "ffi", "zend"]
|
|
version = "0.1.0"
|
|
authors = ["David Cole <david.cole1340@gmail.com>"]
|
|
edition = "2018"
|
|
categories = ["api-bindings", "command-line-interface"]
|
|
|
|
[dependencies]
|
|
ext-php-rs = { version = "0.6", path = "../../" }
|
|
|
|
clap = "3.0.0-beta.5"
|
|
anyhow = "1"
|
|
dialoguer = "0.9"
|
|
libloading = "0.7"
|
|
cargo_metadata = "0.14" |