First set of files:
- Base file, contains some common classes and functions for use in the framework. - An autoloader class, to load PHP classes in a specific directory. - A logger class with functionality similar to the Python built-in `logging' module. - Unit tests for the files listed above. - README and git/unit tests/documentation config files.
parents
No related branches found
No related tags found
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- README.txt 22 additions, 0 deletionsREADME.txt
- autoloader.php 173 additions, 0 deletionsautoloader.php
- base.php 76 additions, 0 deletionsbase.php
- logger.php 168 additions, 0 deletionslogger.php
- phpdoc.dist.xml 16 additions, 0 deletionsphpdoc.dist.xml
- phpunit.xml 26 additions, 0 deletionsphpunit.xml
- tests/_files/baz.php 6 additions, 0 deletionstests/_files/baz.php
- tests/_files/foo.php 6 additions, 0 deletionstests/_files/foo.php
- tests/_files/foo/bar.php 8 additions, 0 deletionstests/_files/foo/bar.php
- tests/_files/second/foo_baz.php 6 additions, 0 deletionstests/_files/second/foo_baz.php
- tests/test_autoloader.php 97 additions, 0 deletionstests/test_autoloader.php
- tests/test_base.php 28 additions, 0 deletionstests/test_base.php
- tests/test_logger.php 114 additions, 0 deletionstests/test_logger.php
.gitignore
0 → 100644
README.txt
0 → 100644
autoloader.php
0 → 100644
base.php
0 → 100644
logger.php
0 → 100644
phpdoc.dist.xml
0 → 100644
phpunit.xml
0 → 100644
tests/_files/baz.php
0 → 100644
tests/_files/foo.php
0 → 100644
tests/_files/foo/bar.php
0 → 100644
tests/_files/second/foo_baz.php
0 → 100644
tests/test_autoloader.php
0 → 100644
tests/test_base.php
0 → 100644
tests/test_logger.php
0 → 100644
Please register or sign in to comment