dnoegel/php-xdg-base-dir
implementation of xdg base directory specification for php
0.1
2014-10-24 07:27 UTC
Requires
- php: >=5.3.2
Requires (Dev)
- phpunit/phpunit: @stable
README
Implementation of XDG Base Directory specification for php
Install
Via Composer
$ composer require dnoegel/php-xdg-base-dir
Usage
$xdg = new \XdgBaseDir\Xdg(); echo $xdg->getHomeDir(); echo $xdg->getHomeConfigDir(); echo $xdg->getHomeDataDir(); echo $xdg->getHomeCacheDir(); echo $xdg->getRuntimeDir(); print_r($xdg->getDataDirs()); // returns array print_r($xdg->getConfigDirs()); // returns array
Testing
$ phpunit
License
The MIT License (MIT). Please see License File for more information.