Skip to content

Commit 53b520d

Browse files
committed
Unit Tests
1 parent d38503d commit 53b520d

18 files changed

+767
-1628
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
vendor/
66
www/temp/
77
FileManager.json
8-
.php_cs.cache
8+
*.cache
99

.phpunit.result.cache

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,12 @@ $controller = new \PHPFUI\InstaDoc\Controller($fileManager);
3232
echo $controller->display();
3333
```
3434
That is it. You are done!
35+
36+
#### To Do List:
37+
38+
* Generate static files
39+
* Create Doc page (the whole point, but do the easy stuff first!)
40+
* Add installation script
41+
* Add more documentation
42+
* Allow for customizable pages (not 100% yet)
43+
* .git page

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "phpfui/InstaDoc",
2+
"name": "phpfui/instadoc",
33
"description": "Instant cocumentation for PHP projects",
44
"minimum-stability": "stable",
55
"keywords": ["documentation", "phpdoc", "block", "doc", "docblock", "foundation"],
@@ -14,12 +14,14 @@
1414
"require": {
1515
"php": ">=7.1",
1616
"phpfui/phpfui": "^6.0",
17-
"gitonomy/gitlib": "^1.2",
1817
"erusev/parsedown": "^1.7",
19-
"gitonomy/gitlib": "^1.2",
18+
"gitonomy/gitlib": "dev-master",
2019
"scrivo/highlight.php": "^9.17"
2120
},
2221
"autoload": {
2322
"psr-0": {"PHPFUI\\InstaDoc\\": "src/"}
23+
},
24+
"require-dev": {
25+
"phpfui/html-unit-tester": "^1.0"
2426
}
2527
}

0 commit comments

Comments
 (0)