Skip to content

Commit ca2ac8c

Browse files
committed
Update docs
1 parent 796bebb commit ca2ac8c

File tree

108 files changed

+523
-441
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+523
-441
lines changed

docs/cmake/ext/libxml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Configure the `libxml` extension.
77

8-
This extension provides support for XML parser and toolkit libxml.
8+
This extension provides XML parser and toolkit support using libxml2 library.
99

1010
## EXT_LIBXML
1111

docs/cmake/ext/mysqlnd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
Configure the `mysqlnd` extension.
77

8-
This extension contains MySQL Native Driver for supporting MySQL-compatible
9-
database in PHP extensions.
8+
This extension contains MySQL Native Driver for using MySQL-compatible databases
9+
in PHP extensions.
1010

1111
## EXT_MYSQLND
1212

docs/cmake/ext/openssl.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
Configure the `openssl` extension.
77

8-
This extension enables using OpenSSL library for encryption and decryption.
8+
This extension enables encryption and decryption support using the OpenSSL
9+
library.
910

1011
## EXT_OPENSSL
1112

docs/cmake/ext/tokenizer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Configure the `tokenizer` extension.
77

8-
This extension provides interface to the PHP tokenizer embedded in the Zend
8+
This extension provides an interface to the PHP tokenizer embedded in the Zend
99
Engine.
1010

1111
## EXT_TOKENIZER

docs/cmake/modules/FindACL.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This is auto-generated file. -->
2-
# FindACL
2+
* Source code: [cmake/modules/FindACL.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindACL.cmake)
33

4-
* Module source code: [FindACL.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindACL.cmake)
4+
# FindACL
55

66
Find the ACL library.
77

@@ -44,10 +44,12 @@ package-specific `ACL_ROOT` variable can be set at
4444
the configuration phase. For example:
4545

4646
```sh
47-
cmake -S <source-dir> -B <build-dir> -DCMAKE_PREFIX_PATH="/opt/ACL;/opt/some-other-package"
47+
cmake -S <source-dir> \
48+
-B <build-dir> \
49+
-DCMAKE_PREFIX_PATH="/opt/ACL;/opt/some-other-package"
4850
# or
4951
cmake -S <source-dir> \
50-
-B <build-dir> \
51-
-DACL_ROOT=/opt/ACL \
52-
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
52+
-B <build-dir> \
53+
-DACL_ROOT=/opt/ACL \
54+
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
5355
```

docs/cmake/modules/FindApache.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This is auto-generated file. -->
2-
# FindApache
2+
* Source code: [cmake/modules/FindApache.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindApache.cmake)
33

4-
* Module source code: [FindApache.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindApache.cmake)
4+
# FindApache
55

66
Find the Apache packages and tools.
77

@@ -54,10 +54,12 @@ package-specific `APACHE_ROOT` variable can be set at
5454
the configuration phase. For example:
5555

5656
```sh
57-
cmake -S <source-dir> -B <build-dir> -DCMAKE_PREFIX_PATH="/opt/Apache;/opt/some-other-package"
57+
cmake -S <source-dir> \
58+
-B <build-dir> \
59+
-DCMAKE_PREFIX_PATH="/opt/Apache;/opt/some-other-package"
5860
# or
5961
cmake -S <source-dir> \
60-
-B <build-dir> \
61-
-DAPACHE_ROOT=/opt/Apache \
62-
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
62+
-B <build-dir> \
63+
-DAPACHE_ROOT=/opt/Apache \
64+
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
6365
```

docs/cmake/modules/FindAppArmor.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This is auto-generated file. -->
2-
# FindAppArmor
2+
* Source code: [cmake/modules/FindAppArmor.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindAppArmor.cmake)
33

4-
* Module source code: [FindAppArmor.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindAppArmor.cmake)
4+
# FindAppArmor
55

66
Find the AppArmor library.
77

@@ -36,10 +36,12 @@ package-specific `APPARMOR_ROOT` variable can be set at
3636
the configuration phase. For example:
3737

3838
```sh
39-
cmake -S <source-dir> -B <build-dir> -DCMAKE_PREFIX_PATH="/opt/AppArmor;/opt/some-other-package"
39+
cmake -S <source-dir> \
40+
-B <build-dir> \
41+
-DCMAKE_PREFIX_PATH="/opt/AppArmor;/opt/some-other-package"
4042
# or
4143
cmake -S <source-dir> \
42-
-B <build-dir> \
43-
-DAPPARMOR_ROOT=/opt/AppArmor \
44-
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
44+
-B <build-dir> \
45+
-DAPPARMOR_ROOT=/opt/AppArmor \
46+
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
4547
```

docs/cmake/modules/FindArgon2.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This is auto-generated file. -->
2-
# FindArgon2
2+
* Source code: [cmake/modules/FindArgon2.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindArgon2.cmake)
33

4-
* Module source code: [FindArgon2.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindArgon2.cmake)
4+
# FindArgon2
55

66
Find the Argon2 library.
77

@@ -36,10 +36,12 @@ package-specific `ARGON2_ROOT` variable can be set at
3636
the configuration phase. For example:
3737

3838
```sh
39-
cmake -S <source-dir> -B <build-dir> -DCMAKE_PREFIX_PATH="/opt/Argon2;/opt/some-other-package"
39+
cmake -S <source-dir> \
40+
-B <build-dir> \
41+
-DCMAKE_PREFIX_PATH="/opt/Argon2;/opt/some-other-package"
4042
# or
4143
cmake -S <source-dir> \
42-
-B <build-dir> \
43-
-DARGON2_ROOT=/opt/Argon2 \
44-
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
44+
-B <build-dir> \
45+
-DARGON2_ROOT=/opt/Argon2 \
46+
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
4547
```

docs/cmake/modules/FindAtomic.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This is auto-generated file. -->
2-
# FindAtomic
2+
* Source code: [cmake/modules/FindAtomic.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindAtomic.cmake)
33

4-
* Module source code: [FindAtomic.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindAtomic.cmake)
4+
# FindAtomic
55

66
Find the atomic instructions.
77

@@ -30,10 +30,12 @@ package-specific `ATOMIC_ROOT` variable can be set at
3030
the configuration phase. For example:
3131

3232
```sh
33-
cmake -S <source-dir> -B <build-dir> -DCMAKE_PREFIX_PATH="/opt/Atomic;/opt/some-other-package"
33+
cmake -S <source-dir> \
34+
-B <build-dir> \
35+
-DCMAKE_PREFIX_PATH="/opt/Atomic;/opt/some-other-package"
3436
# or
3537
cmake -S <source-dir> \
36-
-B <build-dir> \
37-
-DATOMIC_ROOT=/opt/Atomic \
38-
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
38+
-B <build-dir> \
39+
-DATOMIC_ROOT=/opt/Atomic \
40+
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
3941
```

docs/cmake/modules/FindBerkeleyDB.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- This is auto-generated file. -->
2-
# FindBerkeleyDB
2+
* Source code: [cmake/modules/FindBerkeleyDB.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindBerkeleyDB.cmake)
33

4-
* Module source code: [FindBerkeleyDB.cmake](https://github.com/petk/php-build-system/blob/master/cmake/cmake/modules/FindBerkeleyDB.cmake)
4+
# FindBerkeleyDB
55

66
Find the Berkeley DB library.
77

@@ -43,10 +43,12 @@ package-specific `BERKELEYDB_ROOT` variable can be set at
4343
the configuration phase. For example:
4444

4545
```sh
46-
cmake -S <source-dir> -B <build-dir> -DCMAKE_PREFIX_PATH="/opt/BerkeleyDB;/opt/some-other-package"
46+
cmake -S <source-dir> \
47+
-B <build-dir> \
48+
-DCMAKE_PREFIX_PATH="/opt/BerkeleyDB;/opt/some-other-package"
4749
# or
4850
cmake -S <source-dir> \
49-
-B <build-dir> \
50-
-DBERKELEYDB_ROOT=/opt/BerkeleyDB \
51-
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
51+
-B <build-dir> \
52+
-DBERKELEYDB_ROOT=/opt/BerkeleyDB \
53+
-DSOMEOTHERPACKAGE_ROOT=/opt/some-other-package
5254
```

0 commit comments

Comments
 (0)