-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
701b71a
commit a018fee
Showing
12 changed files
with
4,213 additions
and
6 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
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 was deleted.
Oops, something went wrong.
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,5 @@ | ||
We cannot require dev `magento/framework` into the main tools vendor directory. | ||
|
||
This is because it affects the composer autoloading, and this affects the running of the phpunit functional tests. | ||
|
||
Because we're only bundling this in for phpstan, silo it off to keep the tool running as-is. |
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 @@ | ||
{ | ||
"name": "ampersand/magento2-upgrade-patch-helper-phpstan-dev-deps", | ||
"description": "Phpstan dev dependencies, so they do not mess with the autoloader of the actual tooling which is very important", | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://repo-magento-mirror.fooman.co.nz/" | ||
} | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Luke Rodgers", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require-dev": { | ||
"magento/framework": "*", | ||
"phpstan/phpstan": "^1.9" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"magento/composer-dependency-version-audit-plugin": false | ||
} | ||
} | ||
} |
Oops, something went wrong.