composer.json 372 B

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