No Description

composer.json 387B

123456789101112131415161718
  1. {
  2. "name": "dnoegel/php-xdg-base-dir",
  3. "description": "implementation of xdg base directory specification for php",
  4. "type": "library",
  5. "license": "MIT",
  6. "require": {
  7. "php": ">=5.3.2"
  8. },
  9. "require-dev": {
  10. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  11. },
  12. "autoload": {
  13. "psr-4": {
  14. "XdgBaseDir\\": "src/"
  15. }
  16. }
  17. }