-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from magento-commerce/develop
MCLOUD-8486: Release Cloud Tools
- Loading branch information
Showing
9 changed files
with
99 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"templateVersion": "0.1", | ||
"product": { | ||
"name": "Magento Cloud Components", | ||
"description": "The Magento Cloud Components module extends Magento Commerce core functionality for sites deployed on the Cloud platform. This module contains cloud-specific functionality for use with the ece-tools package." | ||
}, | ||
"contacts": { | ||
"team": { | ||
"name": "Magic Mountain", | ||
"DL": "Grp-magento-cloud-all", | ||
"slackChannel": "magic_mountain" | ||
} | ||
}, | ||
"ticketTracker": { | ||
"functionalJiraQueue": { | ||
"projectKey": "MCLOUD" | ||
}, | ||
"securityJiraQueue": { | ||
"projectKey": "MAGREQ", | ||
"component": "Magento Cloud Engineering" | ||
} | ||
}, | ||
"staticScan": { | ||
"enable": false | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\CloudComponents\Test\Functional\Acceptance; | ||
|
||
/** | ||
* @group php74 | ||
*/ | ||
class Acceptance74Cest extends AcceptanceCest | ||
{ | ||
/** | ||
* @return array | ||
*/ | ||
protected function patchesDataProvider(): array | ||
{ | ||
return [ | ||
['magentoVersion' => '2.4.0'], | ||
['magentoVersion' => '2.4.3'], | ||
]; | ||
} | ||
} |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
parameters: | ||
level: 1 | ||
paths: | ||
- Console | ||
- Model | ||
- %currentWorkingDirectory%/Console | ||
- %currentWorkingDirectory%/Model | ||
- %currentWorkingDirectory%/Cron | ||
excludes_analyse: | ||
- %currentWorkingDirectory%/Test/* | ||
reportUnmatchedIgnoredErrors: false | ||
ignoreErrors: | ||
- | ||
message: '#has invalid typehint type#' | ||
path: Model/UrlFinder/Product.php | ||
- message: '#has invalid typehint type#' | ||
path: %currentWorkingDirectory%/Model/UrlFinder/Product.php |