This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
navigation.php
53 lines (52 loc) · 1.79 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
<?php
return [
'Getting Started' => [
'children' => [
'Installation' => 'docs/installation',
'Writing Tests' => 'docs/writing-tests',
'Underlying Test Case' => 'docs/underlying-test-case',
'Assertions' => 'docs/assertions',
'Expectations' => 'docs/expectations',
'Setup And Teardown' => 'docs/setup-and-teardown',
'Higher Order Tests' => 'docs/higher-order-tests',
'Custom Helpers' => 'docs/helpers',
'Exceptions & Errors' => 'docs/exceptions-and-errors',
'Groups Of Tests' => 'docs/groups',
'Skipping Tests' => 'docs/skipping-tests',
'Datasets' => 'docs/datasets',
'Coverage' => 'docs/coverage',
],
],
'Guides' => [
'children' => [
'PHPUnit' => 'docs/guides/phpunit',
'Drift' => 'docs/guides/drift',
'Laravel' => 'docs/guides/laravel',
'Symfony' => 'docs/guides/symfony',
'Pest From Scratch' => 'docs/guides/pest-from-scratch',
'Creating Plugins' => 'docs/guides/plugins',
],
],
'Plugins' => [
'children' => [
'Laravel' => 'docs/plugins/laravel',
'Livewire' => 'docs/plugins/livewire',
'Faker' => 'docs/plugins/faker',
'Global Assertions' => 'docs/plugins/global-assertions',
'Snapshots' => 'docs/plugins/snapshots',
]
],
'More' => [
'children' => [
'Changelog' => 'docs/changelog',
'Upgrade Guide' => 'docs/upgrade-guide',
],
],
'Get involved' => [
'children' => [
'Community' => 'docs/community',
'Contribute' => 'docs/contribute',
'Team' => 'docs/team',
],
]
];