-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into user_agent
* upstream/main: (54 commits) [Pager] Doctrine Bridge (#175) fuckery (#174) [Money] Add Twig Bridge (#173) docs coverage fix typo #63 | Link Component (#170) Pager Component (#134) Pager Contract (#133) Update README.md (#124) [Logger] Finish up Logger Component (#123) Makefile [Logger] New Component (#120) bug [HttpMessage] Helper Methods on Uri to make it easier to create Uri objects with query params (#119) bug fixes Bug fix Making a few changes and breaking shit (#118) updating a few docs (#117) typo ...
- Loading branch information
Showing
526 changed files
with
17,775 additions
and
907 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 |
---|---|---|
@@ -1,32 +1,25 @@ | ||
# Packages | ||
* @SonsOfPHP/Members | ||
|
||
# Make Documentation Team | ||
docs/ @JoshuaEstes | ||
|
||
# Each project needs a Team | ||
/src/SonsOfPHP/Bard @JoshuaEstes | ||
/src/SonsOfPHP/Bridge/Doctrine/EventSourcing @JoshuaEstes | ||
/src/SonsOfPHP/Bridge/Doctrine/FeatureToggle @JoshuaEstes | ||
/src/SonsOfPHP/Bridge/Doctrine/Money @JoshuaEstes | ||
/src/SonsOfPHP/Bridge/Symfony/Cqrs @JoshuaEstes | ||
/src/SonsOfPHP/Bridge/Symfony/EventSourcing @JoshuaEstes | ||
/src/SonsOfPHP/Bridge/Symfony/Filesystem @JoshuaEstes | ||
/src/SonsOfPHP/Bundle/Cqrs @JoshuaEstes | ||
/src/SonsOfPHP/Bundle/FeatureToggle @JoshuaEstes | ||
/src/SonsOfPHP/Bundle/Filesystem @JoshuaEstes | ||
/src/SonsOfPHP/Component/Autoloader @JoshuaEstes | ||
/src/SonsOfPHP/Component/Cache @JoshuaEstes | ||
/src/SonsOfPHP/Component/Clock @JoshuaEstes | ||
/src/SonsOfPHP/Component/Cqrs @JoshuaEstes | ||
/src/SonsOfPHP/Component/Cvs @JoshuaEstes | ||
/src/SonsOfPHP/Component/EventDispatcher @JoshuaEstes | ||
/src/SonsOfPHP/Component/EventSourcing @JoshuaEstes | ||
/src/SonsOfPHP/Component/FeatureToggle @JoshuaEstes | ||
/src/SonsOfPHP/Component/Faker @JoshuaEstes | ||
/src/SonsOfPHP/Component/Filesystem @JoshuaEstes | ||
/src/SonsOfPHP/Component/HttpClient @JoshuaEstes | ||
/src/SonsOfPHP/Component/HttpFactory @JoshuaEstes | ||
/src/SonsOfPHP/Component/HttpHandler @JoshuaEstes | ||
/src/SonsOfPHP/Component/HttpMessage @JoshuaEstes | ||
/src/SonsOfPHP/Component/Json @JoshuaEstes | ||
/src/SonsOfPHP/Component/Logger @JoshuaEstes | ||
/src/SonsOfPHP/Component/Money @JoshuaEstes | ||
/src/SonsOfPHP/Component/Pdf @JoshuaEstes | ||
/src/SonsOfPHP/Component/PhoneNumber @JoshuaEstes | ||
/src/SonsOfPHP/Component/Queue @JoshuaEstes | ||
/src/SonsOfPHP/Component/Version @JoshuaEstes | ||
|
||
# Each component/contract needs a Team | ||
/src/SonsOfPHP/**/Cache @JoshuaEstes | ||
/src/SonsOfPHP/**/Clock @JoshuaEstes | ||
/src/SonsOfPHP/**/Common @JoshuaEstes | ||
/src/SonsOfPHP/**/Cqrs @JoshuaEstes | ||
/src/SonsOfPHP/**/EventDispatcher @JoshuaEstes | ||
/src/SonsOfPHP/**/EventSourcing @JoshuaEstes | ||
/src/SonsOfPHP/**/FeatureToggle @JoshuaEstes | ||
/src/SonsOfPHP/**/Filesystem @JoshuaEstes | ||
/src/SonsOfPHP/**/HttpFactory @JoshuaEstes | ||
/src/SonsOfPHP/**/HttpMessage @JoshuaEstes | ||
/src/SonsOfPHP/**/Json @JoshuaEstes | ||
/src/SonsOfPHP/**/Link @JoshuaEstes | ||
/src/SonsOfPHP/**/Logger @JoshuaEstes | ||
/src/SonsOfPHP/**/Money @JoshuaEstes | ||
/src/SonsOfPHP/**/Pager @JoshuaEstes | ||
/src/SonsOfPHP/**/Version @JoshuaEstes |
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,9 @@ | ||
## Description | ||
|
||
|
||
|
||
## Checklist | ||
- [ ] Updated CHANGELOG files | ||
- [ ] Updated Documentation | ||
- [ ] Unit Tests Created | ||
- [ ] php-cs-fixer |
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,47 @@ | ||
name: Codecov | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'src/**' | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- 'src/**' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
name: Codecov | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: ['8.1'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: xdebug | ||
extensions: apcu | ||
- name: Cache Composer Packages | ||
id: composer-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php- | ||
- run: make install phpunit | ||
env: | ||
XDEBUG_MODE: coverage | ||
PHPUNIT_OPTIONS: --coverage-clover coverage.xml | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
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,15 +1,16 @@ | ||
name: "PR Labeler" | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
- pull_request_target | ||
|
||
jobs: | ||
label: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
sync-labels: true | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
sync-labels: 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
Oops, something went wrong.