This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(deps): remove Nexus dependencies * chore(deps): Remove dependency on olcs-laminas * chore(deps): Remove dependency on olcs/olcs-devtools * chore(ci-cd): add CI/CD workflow * chore(config): add configuration files for maintaining code consistency and quality * chore: moved phpUnit config to root directory * chore(deps): added dev dependencies packages * chore(deps): update PSR-4 autoloading configuration * chore(tests): update namespace in test files * chore(tests): missing testHelpers Trait file added * chore: updated .gitignore * chore(test): updated namespaces in the test file * Feat: missing Abstract file added and namespacing added accordingly * Feat: Added missing namespace * Feat: BootStrap reliance removed * Feat: TestHelper Class added * Feat: BootStrap reliance removed * Feat: Missing serviceManager method added * Feat: Setting up Logger initially * Feat: Code standard correct path added * chore(deps): updated dependencies * chore(deps): added new dependencies * chore(deps): update olcs/common to ^4.206.516 * chore: removed lock files * chore(deps): updated packages for composer to pick appropriate version * chore: updated .gitignore * chore(deps): added, removed and updated packages as required and need accordingly * chore(deps): added, removed and updated packages as required and needed accordingly * chore(deps): added, removed and updated packages as required and needed accordingly * chore: Removed debugging flagged to stop on error * chore: Removed in favor of default setting * chore(deps): added, removed and updated packages as required and needed accordingly * chore: project specific workflow added * chore: added correct path of phpstan and psalm
- Loading branch information
1 parent
00f6a61
commit 75aac02
Showing
56 changed files
with
3,904 additions
and
2,775 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,17 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.php] | ||
indent_size = 4 |
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,24 @@ | ||
name: CD | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-please: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
outputs: | ||
tag_name: ${{ steps.release.outputs.tag_name }} | ||
release_created: ${{ steps.release.outputs.release_created }} | ||
sha: ${{ steps.release.outputs.sha }} | ||
steps: | ||
- uses: google-github-actions/release-please-action@v3 | ||
id: release | ||
with: | ||
release-type: php | ||
package-name: olcs-selfserve |
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,23 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * 1' | ||
|
||
jobs: | ||
security: | ||
uses: dvsa/.github/.github/workflows/php-security.yml@main | ||
secrets: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
|
||
static-analysis: | ||
uses: dvsa/.github/.github/workflows/php-static.yml@main | ||
with: | ||
php-version: '7.4' | ||
|
||
tests: | ||
uses: dvsa/.github/.github/workflows/php-tests.yml@main | ||
with: | ||
php-versions: "[\"7.4\"]" | ||
fail-fast: 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
Oops, something went wrong.