seagoj / devtools
Tools for PHP development
Installs: 219
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 5
Forks: 0
Open Issues: 1
pkg:composer/seagoj/devtools
Requires
- predis/predis: >=1.1
Requires (Dev)
- phpspec/phpspec: dev-master
- phpunit/dbunit: 1.2.*
- phpunit/php-invoker: 1.1.*
- phpunit/phpunit: 3.7.*
- phpunit/phpunit-selenium: 1.3.*
- phpunit/phpunit-story: 1.0.*
- seagoj/prophecy: dev-development
This package is not auto-updated.
Last update: 2025-10-25 22:27:41 UTC
README
Devtools is a collection of PHP libraries designed for rapid development and debugging.
-
Dbg: Debuging class that manages exceptions and debugging output
-
Git: Class to interface with the GitHub API
-
Markdown: Class to translate Markdown into prper HTML code
-
Model: Data access class to be used in MVC type architectures
-
RandData: Generates random test data of specific type to debug with
-
Unit Unit tester
Installation and reference
Clone the repo to /lib/Devtools in your project file
Copy dep/autoloader.php to the Document Root and reference it in your project files as below:
require_once $_SERVER['DOCUMENT_ROOT'].'/autoloader.php';
Usage
Calls to namespaces must be Fully-Qualified (must begin with a leading backspace)
$dbg = new \Devtools\Dbg();