-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigation.php
125 lines (124 loc) · 5.97 KB
/
navigation.php
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
return [
'Getting Started' => [
'children' => [
'Installing PHP Censor' => [
'url' => 'docs/installing',
'children' => [
'Adding a virtual host' => 'docs/virtual_host',
'Run builds using a worker' => 'docs/workers/worker',
],
],
'Adding PHP Censor support to your projects' => 'docs/configuring_project',
'Updating PHP Censor' => 'docs/updating',
'Configuring PHP Censor' => 'docs/configuring_application',
'Screenshots' => 'docs/screenshots',
#'Upgrade from v1 to v2' => 'docs/upgrade_from_1_to_2',
#'Changelog 2.1' => 'docs/changelog_2_1',
],
],
'Using PHP Censor' => [
'children' => [
'Automatically building commits pushed to' => [
'children' => [
'Git' => 'docs/sources/git',
'Github (Git)' => 'docs/sources/github',
'Bitbucket (Git)' => 'docs/sources/bitbucket',
'GitLab (Git)' => 'docs/sources/gitlab',
'Gogs (Git)' => '',
'Mercurial/Hg' => '',
'Bitbucket (Hg)' => '',
'Subversion/Svn' => '',
],
],
'Injecting variables into messages' => 'docs/interpolation',
'Project Status Images and Status Page' => 'docs/status',
'Build environments' => 'docs/environments',
'Periodical Builds' => 'docs/periodical_builds',
'Console commands' => 'docs/commands',
'CCMenu/CCTray integration' => 'docs/ccmenu',
],
],
'Plugins' => [
'children' => [
'Dependencies' => [
'children' => [
'Composer' => 'docs/plugins/composer',
'Security Checker' => 'docs/plugins/security_checker',
],
],
'Tests' => [
'children' => [
'Atoum' => 'docs/plugins/atoum',
'Behat' => 'docs/plugins/behat',
'Codeception' => 'docs/plugins/codeception',
'PHP Unit' => 'docs/plugins/php_unit',
'PHP Spec' => 'docs/plugins/php_spec',
],
],
'Code Style' => [
'children' => [
'Lint' => 'docs/plugins/lint',
'PDepend' => 'docs/plugins/pdepend',
'Phan' => 'docs/plugins/phan',
'Psalm' => 'docs/plugins/psalm',
'PHPStan' => 'docs/plugins/php_stan',
'Pahout' => 'docs/plugins/pahout',
'Phlint' => 'docs/plugins/phlint',
'PHP Code Sniffer' => 'docs/plugins/php_code_sniffer',
'PHP Copy/Paste Detector' => 'docs/plugins/php_cpd',
'PHP Coding Standards Fixer' => 'docs/plugins/php_cs_fixer',
'PHP Docblock Checker' => 'docs/plugins/php_docblock_checker',
'PHP Loc' => 'docs/plugins/php_loc',
'PHP Mess Detector' => 'docs/plugins/php_mess_detector',
'PHP Parallel Lint' => 'docs/plugins/php_parallel_lint',
'PHP Tal Lint' => 'docs/plugins/php_tal_lint',
'Technical Debt' => 'docs/plugins/technical_debt',
'SensioLabs Insight' => 'docs/plugins/sensiolabs_insight',
],
],
'Databases' => [
'children' => [
'MySQL' => 'docs/plugins/mysql',
'PostgreSQL' => 'docs/plugins/pgsql',
'SQLite' => 'docs/plugins/sqlite',
],
],
'Deployment' => [
'children' => [
'Mage' => 'docs/plugins/mage',
'Mage v3' => 'docs/plugins/mage3',
'Phing' => 'docs/plugins/phing',
'Deployer' => 'docs/plugins/deployer',
'DeployerOrg' => 'docs/plugins/deployer_org',
],
],
'Notifications' => [
'children' => [
'Campfire' => 'docs/plugins/campfire_notify',
'Email' => 'docs/plugins/email_notify',
'FlowDock' => 'docs/plugins/flowdock_notify',
'IRC' => 'docs/plugins/irc_notify',
'Slack' => 'docs/plugins/slack_notify',
'Telegram' => 'docs/plugins/telegram_notify',
'Webhook' => 'docs/plugins/webhook_notify',
'XMPP' => 'docs/plugins/xmpp_notify',
],
],
'Other' => [
'children' => [
'Clean Build' => 'docs/plugins/clean_build',
'Copy Build' => 'docs/plugins/copy_build',
'Env' => 'docs/plugins/env',
'Git' => 'docs/plugins/git',
'Grunt' => 'docs/plugins/grunt',
'Gulp' => 'docs/plugins/gulp',
'Package Build' => 'docs/plugins/package_build',
'Phar' => 'docs/plugins/phar',
'Shell' => 'docs/plugins/shell',
'Wipe' => 'docs/plugins/wipe',
],
],
],
],
];