dnoegel/php-xdg-base-dir

implementation of xdg base directory specification for php

Installs: 201 096 478

Dependents: 14

Suggesters: 0

Security: 0

Stars: 6 357

Watchers: 5

Forks: 12

Open Issues: 5

v0.1.1 2019-12-04 15:06 UTC

This package is auto-updated.

Last update: 2024-04-16 14:04:24 UTC


README

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.