1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "sylius/resource",
- "type": "library",
- "description": "Basic resource interfaces for PHP applications.",
- "keywords": ["shop", "ecommerce", "resource", "api", "sylius", "doctrine"],
- "homepage": "http://sylius.org",
- "license": "MIT",
- "authors": [
- {
- "name": "Paweł Jędrzejewski",
- "homepage": "http://pjedrzejewski.com"
- },
- {
- "name": "Sylius project",
- "homepage": "http://sylius.org"
- },
- {
- "name": "Community contributions",
- "homepage": "http://github.com/Sylius/Sylius/contributors"
- }
- ],
- "require": {
- "php": ">=5.3.3",
- "doctrine/collections": "~1.0",
- "doctrine/common": "~2.3",
- "winzou/state-machine": "~0.1",
- "symfony/event-dispatcher": "~2.3"
- },
- "require-dev": {
- "phpspec/phpspec": "~2.1"
- },
- "config": {
- "bin-dir": "bin"
- },
- "autoload": {
- "psr-4": { "Sylius\\Component\\Resource\\": "" }
- },
- "autoload-dev": {
- "psr-4": { "Sylius\\Component\\Resource\\spec\\": "spec/" }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "0.13-dev"
- }
- }
- }
|