This repository has been archived on 2020-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pingan/vendor/dnoegel/php-xdg-base-dir
2020-08-06 16:37:53 +08:00
..
2020-08-06 16:37:53 +08:00
2020-08-06 16:37:53 +08:00
2020-08-06 16:37:53 +08:00
2020-08-06 16:37:53 +08:00

XDG Base Directory

Latest Stable Version Total Downloads Software License Build Status

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.