Skip to content

Commit 2b38249

Browse files
committed
Update readme to remove 7.3 reference
1 parent 3c3acc1 commit 2b38249

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
We all document our code with PHP [DocBlocks](https://en.wikipedia.org/wiki/PHPDoc) but we never seem to actually generate the documentation and add it to our project. Why? It simply takes too much time (over a minute), so we put it off till later, and later never comes.
66

7-
But with PHPFUI\InstaDoc, you can document your site in about a minute (OK, maybe 2). The steps involved:
8-
* Install PHPFUI\InstaDoc via Composer (30 seconds)
7+
But with PHPFUI/InstaDoc, you can document your site in about a minute (OK, maybe 2). The steps involved:
8+
* Install PHPFUI/InstaDoc via Composer (30 seconds)
99
* Run installation script (30 seconds)
1010
* Create document page (1 minute, 6 lines of code)
1111

1212
Two minutes to usable documentation with the following features:
1313

14-
## PHPFUI\InstaDoc Features
14+
## PHPFUI/InstaDoc Features
1515
* Always up to date, even with code that is not yet checked in
1616
* Send constructor information including parameters and default values to clipboard
1717
* Child and Parent class hierarchy clearly displayed and accessable
@@ -28,7 +28,7 @@ But with PHPFUI\InstaDoc, you can document your site in about a minute (OK, mayb
2828
* 5+ line config compatible with all PHP frameworks, or standalone
2929
* Uses [Foundation CSS framework](https://get.foundation) for a great experience on mobile
3030

31-
### Install PHPFUI\InstaDoc (requires PHP >= 7.3)
31+
### Install PHPFUI/InstaDoc (requires PHP >= 7.4)
3232
```
3333
composer require phpfui/InstaDoc
3434
```
@@ -40,7 +40,7 @@ php vendor/phpfui/instadoc/install.php yourPublicDirectory/subDirectory
4040
Example: **php vendor/phpfui/instadoc/install.php public/PHPFUI** will add all needed files to public/PHPFUI, which will avoid any conflicts with your current files. You can specify any directory by using \PHPFUI\Page::setResourcePath, but PHPFUI is recomended to keep things simple.
4141

4242
### Create Document Page
43-
PHPFUI\InstaDoc does not reply on any framework and can run on a standalone page. It is recommended that you do not make your documentation public, as PHPFUI\InstaDoc will display PHP source files. How you restrict access to the page is up to you. The following does not restrict access and is simply an example:
43+
PHPFUI/InstaDoc does not reply on any framework and can run on a standalone page. It is recommended that you do not make your documentation public, as PHPFUI/InstaDoc will display PHP source files. How you restrict access to the page is up to you. The following does not restrict access and is simply an example:
4444

4545
```php
4646
<?php
@@ -67,7 +67,7 @@ echo $controller->display();
6767
That is it. You are done!
6868

6969
### Adding New Classes
70-
PHPFUI\InstaDoc saves the classes to display in PHP serialized files. Delete those files (.serial extension) when you want to display new classes. PHPFUI\InstaDoc will regenerate automatically if the files are missing.
70+
PHPFUI/InstaDoc saves the classes to display in PHP serialized files. Delete those files (.serial extension) when you want to display new classes. PHPFUI/InstaDoc will regenerate automatically if the files are missing.
7171

7272
### Add Child Classes to the Docs
7373
```php

0 commit comments

Comments
 (0)