diff --git a/Cargo.toml b/Cargo.toml index f480a6f2d..28d4f912f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,11 +2,14 @@ name = "ext-php-rs" description = "Bindings for the Zend API to build PHP extensions natively in Rust." repository = "https://github.com/davidcole1340/ext-php-rs" -homepage = "https://github.com/davidcole1340/ext-php-rs" +homepage = "https://ext-php.rs" license = "MIT OR Apache-2.0" keywords = ["php", "ffi", "zend"] version = "0.14.2" -authors = ["David Cole "] +authors = [ + "Xenira ", + "David Cole " +] edition = "2021" categories = ["api-bindings"] exclude = ["/.github", "/.crates"] diff --git a/README.md b/README.md index 3eb338a43..f58a60a2d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Crates.io](https://img.shields.io/crates/v/ext-php-rs)](https://lib.rs/ext-php-rs) [![docs.rs](https://img.shields.io/docsrs/ext-php-rs/latest)](https://docs.rs/ext-php-rs) -[![Guide Workflow Status](https://img.shields.io/github/actions/workflow/status/davidcole1340/ext-php-rs/docs.yml?branch=master&label=guide)](https://davidcole1340.github.io/ext-php-rs) +[![Guide Workflow Status](https://img.shields.io/github/actions/workflow/status/davidcole1340/ext-php-rs/docs.yml?branch=master&label=guide)](https://ext-php.rs) ![CI Workflow Status](https://img.shields.io/github/actions/workflow/status/davidcole1340/ext-php-rs/build.yml?branch=master) [![Coverage Status](https://coveralls.io/repos/github/davidcole1340/ext-php-rs/badge.svg)](https://coveralls.io/github/davidcole1340/ext-php-rs) [![Discord](https://img.shields.io/discord/115233111977099271)](https://discord.gg/dphp) @@ -11,7 +11,7 @@ Bindings and abstractions for the Zend API to build PHP extensions natively in Rust. - Documentation: -- Guide: +- Guide: ## Example @@ -77,7 +77,7 @@ var_dump(hello_world("David")); // string(13) "Hello, David!" ``` For more examples read the library -[guide](https://davidcole1340.github.io/ext-php-rs). +[guide](https://ext-php.rs). [`cargo-php`]: https://crates.io/crates/cargo-php @@ -107,7 +107,7 @@ Our main goal is to **make extension development easier.** ## Documentation The library guide can be read -[here](https://davidcole1340.github.io/ext-php-rs). +[here](https://ext-php.rs). The project is documented in-line, so viewing the `cargo` documentation is the best resource at the moment. This can be viewed at [docs.rs]. diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 49408ee2b..5ac0950db 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -2,11 +2,14 @@ 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" +homepage = "https://ext-php.rs" license = "MIT OR Apache-2.0" keywords = ["php", "ffi", "zend"] version = "0.1.11" -authors = ["David Cole "] +authors = [ + "Xenira ", + "David Cole " +] edition = "2018" categories = ["api-bindings", "command-line-interface"] diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 0ad880369..b55d447d4 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -2,10 +2,13 @@ name = "ext-php-rs-derive" description = "Derive macros for ext-php-rs." repository = "https://github.com/davidcole1340/ext-php-rs" -homepage = "https://github.com/davidcole1340/ext-php-rs" +homepage = "https://ext-php.rs" license = "MIT OR Apache-2.0" version = "0.11.2" -authors = ["David Cole "] +authors = [ + "Xenira ", + "David Cole " +] edition = "2021" [lib]