-
Notifications
You must be signed in to change notification settings - Fork 0
Implement Orders endpoint #1
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
e970580
Added plugins
AlexisPPLIN 2ccf938
WIP : Created models for orders endpoints
AlexisPPLIN 2ece525
Added OrderDetails
AlexisPPLIN cd0bf6b
Added remaining models
AlexisPPLIN 69639ed
Added jsonSerialize
AlexisPPLIN 3fbe4aa
Added full coverage for Orders GET
AlexisPPLIN e665301
Updated composer
AlexisPPLIN 2ccdb20
Fixed versionning
AlexisPPLIN 58a3673
Fixed composer for php 8.2
AlexisPPLIN eb81787
Added error handling and parsing
AlexisPPLIN d57e744
Added testing for all methods of Orders client
AlexisPPLIN 3a0f26b
Finished tests for full coverage
AlexisPPLIN 0076493
Rector
AlexisPPLIN 52f10d2
Fixed imports with rector
AlexisPPLIN 63b12e0
Added phpstan code quality checks
AlexisPPLIN e665608
Added rector action
AlexisPPLIN 64c8d10
Added permission to code-quality action
AlexisPPLIN 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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,68 @@ | ||
| name: Code Quality | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main" ] | ||
| pull_request: | ||
| branches: [ "main" ] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| rector: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - name: Setup PHP | ||
| uses: shivammathur/setup-php@v2 | ||
| with: | ||
| php-version: 8.2 | ||
| coverage: xdebug | ||
|
|
||
| - name: Cache Composer packages | ||
| id: composer-cache | ||
| uses: actions/cache@v5 | ||
| with: | ||
| path: vendor | ||
| key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-php- | ||
|
|
||
| - name: Install dependencies | ||
| run: composer install --prefer-dist --no-progress | ||
|
|
||
| - name: Rector Cache | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: /tmp/rector | ||
| key: ${{ runner.os }}-rector-${{ github.run_id }} | ||
| restore-keys: ${{ runner.os }}-rector- | ||
|
|
||
| - run: mkdir -p /tmp/rector | ||
|
|
||
| - name: Rector Dry Run | ||
| run: php vendor/bin/rector process --dry-run --config=rector.php | ||
|
|
||
| phpstan: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - name: Cache Composer packages | ||
| id: composer-cache | ||
| uses: actions/cache@v5 | ||
| with: | ||
| path: vendor | ||
| key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-php- | ||
|
|
||
| - name: Install dependencies | ||
| run: composer install --prefer-dist --no-progress | ||
|
|
||
| - uses: php-actions/phpstan@v3 | ||
| with: | ||
| php_version: 8.2 | ||
|
|
||
This file contains hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.