Skip to content

Commit 1f32088

Browse files
committed
docs: update guide url and authors
Refs: #500
1 parent 0b0368a commit 1f32088

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
name = "ext-php-rs"
33
description = "Bindings for the Zend API to build PHP extensions natively in Rust."
44
repository = "https://github.com/davidcole1340/ext-php-rs"
5-
homepage = "https://github.com/davidcole1340/ext-php-rs"
5+
homepage = "https://ext-php.rs"
66
license = "MIT OR Apache-2.0"
77
keywords = ["php", "ffi", "zend"]
88
version = "0.14.1"
9-
authors = ["David Cole <[email protected]>"]
9+
authors = [
10+
"Xenira <[email protected]>",
11+
"David Cole <[email protected]>"
12+
]
1013
edition = "2021"
1114
categories = ["api-bindings"]
1215
exclude = ["/.github", "/.crates"]

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Crates.io](https://img.shields.io/crates/v/ext-php-rs)](https://lib.rs/ext-php-rs)
44
[![docs.rs](https://img.shields.io/docsrs/ext-php-rs/latest)](https://docs.rs/ext-php-rs)
5-
[![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)
5+
[![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)
66
![CI Workflow Status](https://img.shields.io/github/actions/workflow/status/davidcole1340/ext-php-rs/build.yml?branch=master)
77
[![Coverage Status](https://coveralls.io/repos/github/davidcole1340/ext-php-rs/badge.svg)](https://coveralls.io/github/davidcole1340/ext-php-rs)
88
[![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
1111
Rust.
1212

1313
- Documentation: <https://docs.rs/ext-php-rs>
14-
- Guide: <https://davidcole1340.github.io/ext-php-rs>
14+
- Guide: <https://ext-php.rs>
1515

1616
## Example
1717

@@ -77,7 +77,7 @@ var_dump(hello_world("David")); // string(13) "Hello, David!"
7777
```
7878

7979
For more examples read the library
80-
[guide](https://davidcole1340.github.io/ext-php-rs).
80+
[guide](https://ext-php.rs).
8181

8282
[`cargo-php`]: https://crates.io/crates/cargo-php
8383

@@ -107,7 +107,7 @@ Our main goal is to **make extension development easier.**
107107
## Documentation
108108

109109
The library guide can be read
110-
[here](https://davidcole1340.github.io/ext-php-rs).
110+
[here](https://ext-php.rs).
111111

112112
The project is documented in-line, so viewing the `cargo` documentation is the
113113
best resource at the moment. This can be viewed at [docs.rs].

crates/cli/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
name = "cargo-php"
33
description = "Installs extensions and generates stub files for PHP extensions generated with `ext-php-rs`."
44
repository = "https://github.com/davidcole1340/ext-php-rs"
5-
homepage = "https://github.com/davidcole1340/ext-php-rs"
5+
homepage = "https://ext-php.rs"
66
license = "MIT OR Apache-2.0"
77
keywords = ["php", "ffi", "zend"]
88
version = "0.1.11"
9-
authors = ["David Cole <[email protected]>"]
9+
authors = [
10+
"Xenira <[email protected]>",
11+
"David Cole <[email protected]>"
12+
]
1013
edition = "2018"
1114
categories = ["api-bindings", "command-line-interface"]
1215

crates/macros/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
name = "ext-php-rs-derive"
33
description = "Derive macros for ext-php-rs."
44
repository = "https://github.com/davidcole1340/ext-php-rs"
5-
homepage = "https://github.com/davidcole1340/ext-php-rs"
5+
homepage = "https://ext-php.rs"
66
license = "MIT OR Apache-2.0"
77
version = "0.11.1"
8-
authors = ["David Cole <[email protected]>"]
8+
authors = [
9+
"Xenira <[email protected]>",
10+
"David Cole <[email protected]>"
11+
]
912
edition = "2018"
1013

1114
[lib]

0 commit comments

Comments
 (0)