Skip to content

Commit d0595e1

Browse files
committed
Improve README
1 parent 0c081d7 commit d0595e1

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Diff for: README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Docker running Nginx, PHP-FPM, MySQL and PHPMyAdmin.
3838
## Directory tree
3939

4040
```sh
41-
docker-nginx-php-mysql
41+
├── README.md
4242
├── bin
4343
│   └── linux
4444
│   └── clean.sh
@@ -56,8 +56,12 @@ docker-nginx-php-mysql
5656
└── web
5757
├── app
5858
│   ├── composer.json
59+
│   ├── phpunit.xml.dist
5960
│   ├── src
60-
│   └── tests
61+
│   │   └── Foo.php
62+
│   └── test
63+
│   ├── FooTest.php
64+
│   └── bootstrap.php
6165
└── public
6266
└── index.php
6367
```
@@ -125,6 +129,12 @@ $ docker exec mysql sh -c 'exec mysqldump test -uroot -p"$MYSQL_ROOT_PASSWORD"'
125129
# }
126130
```
127131

132+
## Generating API Documentation
133+
134+
```sh
135+
./web/app/vendor/apigen/apigen/bin/apigen generate -s web/app/src -d web/app/doc
136+
```
137+
128138
## Cleaning project
129139

130140
```sh

0 commit comments

Comments
 (0)