composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "sylius/attribute",
  3. "type": "library",
  4. "description": "Component for handling object attributes in PHP projects.",
  5. "keywords": ["shop", "ecommerce", "attribute", "feature"],
  6. "homepage": "http://sylius.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Paweł Jędrzejewski",
  11. "homepage": "http://pjedrzejewski.com"
  12. },
  13. {
  14. "name": "Sylius project",
  15. "homepage": "http://sylius.org"
  16. },
  17. {
  18. "name": "Community contributions",
  19. "homepage": "http://github.com/Sylius/Sylius/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.3.3",
  24. "sylius/resource": "0.13.*@dev"
  25. },
  26. "require-dev": {
  27. "phpspec/phpspec": "~2.1"
  28. },
  29. "config": {
  30. "bin-dir": "bin"
  31. },
  32. "autoload": {
  33. "psr-4": { "Sylius\\Component\\Attribute\\": "" }
  34. },
  35. "autoload-dev": {
  36. "psr-4": { "Sylius\\Component\\Attribute\\spec\\": "spec/" }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "0.13-dev"
  41. }
  42. }
  43. }