Skip to content

Instantly share code, notes, and snippets.

@fooman
Last active July 4, 2018 02:20
Show Gist options
  • Save fooman/c42a7a752682f32782249115583e4dc6 to your computer and use it in GitHub Desktop.
Save fooman/c42a7a752682f32782249115583e4dc6 to your computer and use it in GitHub Desktop.
Magento Project - composer.json comparison
{
"name": "magento/project-community-edition",
"description": "eCommerce Platform for Growth (Community Edition)",
"type": "project",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"magento/product-community-edition": "2.3.0-alpha",
"composer/composer": "@alpha"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.10.0",
"lusitanian/oauth": "~0.8.10",
"pdepend/pdepend": "2.5.2",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "~6.2.0",
"sebastian/phpcpd": "~3.0.0",
"squizlabs/php_codesniffer": "3.2.2"
},
"autoload": {
"psr-4": {
"Magento\\Framework\\": "lib/internal/Magento/Framework/",
"Magento\\Setup\\": "setup/src/Magento/Setup/",
"Magento\\": "app/code/Magento/",
"Zend\\Mvc\\Controller\\": "setup/src/Zend/Mvc/Controller/"
},
"psr-0": {
"": [
"app/code/"
]
},
"files": [
"app/etc/NonComposerComponentRegistration.php"
],
"exclude-from-classmap": [
"**/dev/**",
"**/update/**",
"**/Test/**"
]
},
"autoload-dev": {
"psr-4": {
"Magento\\Sniffs\\": "dev/tests/static/framework/Magento/Sniffs/",
"Magento\\Tools\\": "dev/tools/Magento/Tools/",
"Magento\\Tools\\Sanity\\": "dev/build/publication/sanity/Magento/Tools/Sanity/",
"Magento\\TestFramework\\Inspection\\": "dev/tests/static/framework/Magento/TestFramework/Inspection/",
"Magento\\TestFramework\\Utility\\": "dev/tests/static/framework/Magento/TestFramework/Utility/"
}
},
"prefer-stable": true,
"version": "2.3.0-alpha",
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"extra": {
"magento-force": "override"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment