mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-08 19:46:41 +00:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"name": "graycore/magento2-demo-package",
|
|
"description": "A Magento 2 Demostration Package",
|
|
"type": "magento2-module",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Damien Retzinger",
|
|
"email": "damienwebdev@gmail.com"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"test": "./vendor/bin/phpunit Test/Unit"
|
|
},
|
|
"archive": {
|
|
"exclude": [
|
|
"/docs",
|
|
"/Test",
|
|
"README.md"
|
|
]
|
|
},
|
|
"minimum-stability": "stable",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Graycore\\DemoPackage\\": ""
|
|
},
|
|
"files": [
|
|
"registration.php"
|
|
]
|
|
},
|
|
"require": {
|
|
"magento/framework": "^102.0 || ^103.0"
|
|
},
|
|
"repositories": {
|
|
"0": {
|
|
"type": "composer",
|
|
"url": "https://mirror.mage-os.org/"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"magento/composer-dependency-version-audit-plugin": true
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5"
|
|
}
|
|
}
|