dnoegel / php-xdg-base-dir
implementation of xdg base directory specification for php
Installs: 176 620 293
Dependents: 15
Suggesters: 0
Security: 0
Stars: 6 381
Watchers: 4
Forks: 12
Open Issues: 5
Requires
- php: >=5.3.2
Requires (Dev)
- phpunit/phpunit: ~7.0|~6.0|~5.0|~4.8.35
This package is auto-updated.
Last update: 2023-03-16 11:20:20 UTC
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.