feat: add Installation Test Action (#1)

This commit is contained in:
Damien Retzinger
2022-06-25 12:14:49 -04:00
committed by GitHub
parent a6400eb9ec
commit 4bc0854cfc
9 changed files with 246 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
{
"name": "graycore/magento2-demo-package",
"description": "A Magento 2 Demostration Package",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Damien Retzinger",
"email": "damienwebdev@gmail.com"
}
],
"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://repo.magento.com/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}