composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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": [
  34. "Composer\\Config::disableProcessTimeout",
  35. "./vendor/bin/phpunit --no-coverage"
  36. ],
  37. "coverage": [
  38. "Composer\\Config::disableProcessTimeout",
  39. "php -dzend_extension=xdebug.so ./vendor/bin/phpunit"
  40. ],
  41. "debug": "php -dxdebug.remote_autostart=On -dzend_extension=xdebug.so ./vendor/bin/phpunit"
  42. },
  43. "config": {
  44. "platform": {
  45. "php": "5.4"
  46. }
  47. }
  48. }