composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "clagiordano/weblibs-configmanager",
  3. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  4. "type": "library",
  5. "license": "LGPL-3.0-or-later",
  6. "keywords": ["clagiordano", "weblibs", "configuration", "manager", "tool"],
  7. "authors": [
  8. {
  9. "name": "Claudio Giordano",
  10. "email": "claudio.giordano@autistici.org",
  11. "role": "Developer"
  12. }
  13. ],
  14. "autoload": {
  15. "psr-4": {
  16. "clagiordano\\weblibs\\configmanager\\": "src/"
  17. }
  18. },
  19. "require": {
  20. "php": ">=5.4"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "^4.8",
  24. "clagiordano/phpunit-result-printer": "^1"
  25. },
  26. "autoload-dev": {
  27. "psr-4": {
  28. "clagiordano\\weblibs\\configmanager\\tests\\": "tests/",
  29. "clagiordano\\weblibs\\configmanager\\testdata\\": "testdata/"
  30. }
  31. },
  32. "scripts": {
  33. "test": "./vendor/bin/phpunit --no-coverage",
  34. "coverage": "./vendor/bin/phpunit"
  35. }
  36. }