You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 636B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "luticate/luticate",
  3. "description": "The Luticate Framework.",
  4. "keywords": ["framework", "luticate"],
  5. "license": "MIT",
  6. "type": "project",
  7. "repositories": [{
  8. "type": "vcs",
  9. "url": "https://git.rthoni.com/luticate/api-utils.git"
  10. }],
  11. "require": {
  12. "php": ">=5.5.9",
  13. "luticate/utils": "dev-develop"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "~4.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "App\\": "app/"
  21. }
  22. },
  23. "autoload-dev": {
  24. "classmap": [
  25. "tests/"
  26. ]
  27. },
  28. "minimum-stability": "dev"
  29. }