composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "elgg/elgg",
  3. "version": "1.12.9",
  4. "description": "Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.",
  5. "license": "GPL-2.0",
  6. "minimum-stability": "dev",
  7. "prefer-stable": true,
  8. "type": "project",
  9. "require": {
  10. "php": "~5.4",
  11. "ext-mysql": "*",
  12. "ext-gd": "*",
  13. "ext-json": "*",
  14. "ext-xml": "*",
  15. "symfony/http-foundation": "~2.6",
  16. "mrclay/minify": "~2.0",
  17. "knplabs/gaufrette": "~0.1.0",
  18. "tedivm/stash": "0.14.*",
  19. "ircmaxell/password-compat": "~1.0",
  20. "roave/security-advisories": "dev-master",
  21. "elgg/login_as": "~1.9"
  22. },
  23. "scripts": {
  24. "test": "phpunit",
  25. "lint": [
  26. "phpcs --standard=vendor/elgg/sniffs/elgg.xml --warning-severity=0 --ignore=*/tests/*,*/upgrades/*,*/deprecated* engine/classes engine/lib",
  27. "composer validate"
  28. ]
  29. },
  30. "suggest": {
  31. "ext-mbstring": "*"
  32. },
  33. "autoload": {
  34. "psr-0": {
  35. "": "engine/classes/"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-0": {
  40. "": "engine/tests/phpunit/"
  41. }
  42. },
  43. "require-dev": {
  44. "phpunit/phpunit": "~4.1",
  45. "elgg/sniffs": "dev-master",
  46. "squizlabs/php_codesniffer": "~1.5",
  47. "simpletest/simpletest": "~1.1"
  48. }
  49. }