Created
October 12, 2018 07:52
-
-
Save markahesketh/906a23457bd00f6d21bbfd9252ed9a36 to your computer and use it in GitHub Desktop.
Sylius 1.3 project default composer file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"keywords": ["symfony", "symfony2", "sylius", "distribution", "ecommerce", "cart", "shopping"], | |
"type": "project", | |
"license": "proprietary", | |
"homepage": "http://sylius.org", | |
"authors": [ | |
{ | |
"name": "Paweł Jędrzejewski" | |
}, | |
{ | |
"name": "Sylius project" | |
}, | |
{ | |
"name": "Community contributions" | |
} | |
], | |
"require": { | |
"php": "^7.2", | |
"sensiolabs/security-checker": "^4.1", | |
"sylius/sylius": "1.3.*@dev" | |
}, | |
"require-dev": { | |
"behat/behat": "^3.4", | |
"behat/mink": "^1.7@dev", | |
"behat/mink-browserkit-driver": "^1.3", | |
"behat/mink-extension": "^2.2", | |
"behat/mink-selenium2-driver": "^1.3", | |
"friends-of-behat/context-service-extension": "^1.2", | |
"friends-of-behat/cross-container-extension": "^1.1", | |
"friends-of-behat/page-object-extension": "^0.1", | |
"friends-of-behat/service-container-extension": "^1.0", | |
"friends-of-behat/suite-settings-extension": "^1.0", | |
"friends-of-behat/symfony-extension": "^1.2.1", | |
"friends-of-behat/variadic-extension": "^1.1", | |
"lakion/api-test-case": "^3.0", | |
"lakion/mink-debug-extension": "^1.2.3", | |
"phpspec/phpspec": "^5.0", | |
"phpunit/phpunit": "^6.5", | |
"stripe/stripe-php": "^4.1", | |
"sylius-labs/coding-standard": "^2.0", | |
"symfony/browser-kit": "^3.4|^4.1", | |
"symfony/debug-bundle": "^3.4|^4.1", | |
"symfony/dotenv": "^3.4|^4.1", | |
"symfony/flex": "^1.1", | |
"symfony/intl": "^3.4|^4.1", | |
"symfony/web-profiler-bundle": "^3.4|^4.1", | |
"symfony/web-server-bundle": "^3.4|^4.1" | |
}, | |
"prefer-stable": true, | |
"autoload": { | |
"psr-4": { | |
"App\\": "src/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"App\\Tests\\": "tests/" | |
} | |
}, | |
"scripts": { | |
"auto-scripts": { | |
"cache:clear": "symfony-cmd", | |
"assets:install %PUBLIC_DIR%": "symfony-cmd", | |
"security-checker security:check": "script" | |
}, | |
"post-install-cmd": [ | |
"@auto-scripts" | |
], | |
"post-update-cmd": [ | |
"@auto-scripts" | |
] | |
}, | |
"config": { | |
"platform": { | |
"php": "7.2" | |
}, | |
"preferred-install": { | |
"*": "dist" | |
}, | |
"sort-packages": true | |
}, | |
"extra": { | |
"symfony": { | |
"allow-contrib": false, | |
"require": "^3.4|^4.1" | |
}, | |
"branch-alias": { | |
"dev-master": "1.3-dev" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment