1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright (c) 2022 PHPER Framework Team
// PHPER is licensed under Mulan PSL v2.
// You can use this software according to the terms and conditions of the Mulan
// PSL v2. You may obtain a copy of Mulan PSL v2 at:
//          http://license.coscl.org.cn/MulanPSL2
// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY
// KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
// See the Mulan PSL v2 for more details.

#![warn(rust_2018_idioms, clippy::dbg_macro)]
#![doc = include_str!("../README.md")]

pub use phper;

#[doc = include_str!("../doc/_01_introduction/index.md")]
pub mod _01_introduction {}

#[doc = include_str!("../doc/_02_quick_start/index.md")]
pub mod _02_quick_start {

    #[doc = include_str!("../doc/_02_quick_start/_01_write_your_first_extension/index.md")]
    pub mod _01_write_your_first_extension {}

    #[doc = include_str!("../doc/_02_quick_start/_02_write_a_simple_http_client/index.md")]
    pub mod _02_write_a_simple_http_client {}
}

#[doc = include_str!("../doc/_03_integrate_with_pecl/index.md")]
pub mod _03_integrate_with_pecl {}

#[doc = include_str!("../doc/_04_zval/index.md")]
pub mod _04_zval {}

#[doc = include_str!("../doc/_05_internal_types/index.md")]
pub mod _05_internal_types {

    #[doc = include_str!("../doc/_05_internal_types/_01_z_str/index.md")]
    pub mod _01_z_str {}

    #[doc = include_str!("../doc/_05_internal_types/_02_z_arr/index.md")]
    pub mod _02_z_arr {}

    #[doc = include_str!("../doc/_05_internal_types/_03_z_obj/index.md")]
    pub mod _03_z_obj {}
}

#[doc = include_str!("../doc/_06_class_and_object/index.md")]
pub mod _06_class_and_object {}

#[doc = include_str!("../doc/_07_module/index.md")]
pub mod _07_module {

    /// TODO
    pub mod _01_hooks {}

    /// TODO
    pub mod _02_register_functions {}

    /// TODO
    pub mod _03_register_constants {}

    /// TODO
    pub mod _04_register_ini_settings {}

    /// TODO
    pub mod _05_extension_information {}
}

/// TODO
pub mod _08_allocation {}

/// TODO
pub mod _09_handle_exception {}

/// TODO
pub mod _10_build_script {}

/// TODO
pub mod _11_integration_tests {}

/// TODO
pub mod _12_macros {}