-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.3対応 #164
Merged
Merged
4.3対応 #164
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
80f7ed8
fix:bin/consoleまで通るように修正
dotani1111 f3a27be
fix:タイポ修正
dotani1111 d9c0174
fix:RedirectUriが見つからないエラーの修正
dotani1111 baea36a
fix:createメソッドが存在しないエラーの修正
dotani1111 458f19d
fix:$containerの修正
dotani1111 701e265
fix:scopeの修正
dotani1111 f32a0fa
fix:serviceをpublicに変更する
dotani1111 de45f48
fix:null許容型に変更する
dotani1111 22ff130
fix:containerの修正
dotani1111 4a2132b
fix:Type Hintingを追加
dotani1111 17933b7
fix:Github Actionの修正
dotani1111 4712952
fix:null許容型へ修正
dotani1111 dd7f60d
fix:action修正
dotani1111 5ba65e5
コメントの削除
dotani1111 f89a1bf
fix:不要箇所の削除
dotani1111 8897e00
fix:eccube version up
dotani1111 5b3e12c
fix:修正漏れ対応
dotani1111 7e4f4ca
fix:PasswordEncoderからPasswordHasherへ修正
dotani1111 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -17,14 +17,13 @@ on: | |
jobs: | ||
run-on-linux: | ||
name: Run on Linux | ||
runs-on: ${{ matrix.operating-system }} | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
operating-system: [ ubuntu-18.04 ] | ||
php: [ '7.4', '8.0', '8.1' ] | ||
eccube_version: [ '4.2', '4.3-symfony6' ] | ||
php: [ '7.4', '8.0', '8.1', '8.2', '8.3'] | ||
db: [ 'mysql', 'mysql8', 'pgsql' ] | ||
eccube_version: [ '4.2' ] | ||
plugin_code: [ 'Api42' ] | ||
include: | ||
- db: mysql | ||
|
@@ -39,6 +38,15 @@ jobs: | |
database_url: postgres://postgres:[email protected]:5432/eccube_db | ||
database_server_version: 14 | ||
database_charset: utf8 | ||
exclude: | ||
- eccube_version: 4.2 | ||
php: 8.2 | ||
- eccube_version: 4.2 | ||
php: 8.3 | ||
- eccube_version: 4.3-symfony6 | ||
php: 7.4 | ||
- eccube_version: 4.3-symfony6 | ||
php: 8.0 | ||
services: | ||
mysql: | ||
image: mysql:5.7 | ||
|
@@ -72,7 +80,6 @@ jobs: | |
- 1080:1080 | ||
- 1025:1025 | ||
steps: | ||
- run: sudo apt-get purge -y hhvm | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
|
@@ -167,7 +174,7 @@ jobs: | |
working-directory: 'ec-cube' | ||
run: | | ||
bin/console cache:clear --no-warmup | ||
bin/phpunit -c app/Plugin/${PLUGIN_CODE}/phpunit.xml.dist app/Plugin/${PLUGIN_CODE}/Tests | ||
./vendor/bin/phpunit -c app/Plugin/${PLUGIN_CODE}/phpunit.xml.dist app/Plugin/${PLUGIN_CODE}/Tests | ||
|
||
|
||
- name: Disable Plugin | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
services: | ||
_defaults: | ||
public: true |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
\
は不要です。There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chihiro-adachi
修正致しました。