composer.json 582 B

123456789101112131415161718192021222324
  1. {
  2. "name": "phenx/php-font-lib",
  3. "type": "library",
  4. "description": "A library to read, parse, export and make subsets of different types of font files.",
  5. "homepage": "https://github.com/PhenX/php-font-lib",
  6. "license": "LGPL-3.0",
  7. "authors": [
  8. {
  9. "name": "Fabien Ménager",
  10. "email": "fabien.menager@gmail.com"
  11. }
  12. ],
  13. "autoload": {
  14. "psr-4": {
  15. "FontLib\\": "src/FontLib"
  16. }
  17. },
  18. "config": {
  19. "bin-dir": "bin"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^4.8"
  23. }
  24. }