AdoteUm.Dev has the proposal to connect people who are looking for developers for their projects

Overview

About

AdoteUm.Dev has the proposal to connect people who are looking for developers for their projects. AdoteUmDev is a web application, developed in PHP language and the Laravel Framework.

Tecnologies

  • TALL Stack;
  • PHP 8.0+;
  • Laravel Framework 8.40+;
  • Laravel Sail (Docker);
  • Laravel Horizon;
  • Laravel Echo;
  • Laravel Socialite;
  • Pest PHP for Tests;
  • Redis;
  • Maria DB;
  • Supervisor;
  • SendPulse;
  • Bugsnag;
  • AWS.

📝 Note

If the subscribers 10K goal is achieved by the end of the playlist, a version of the mobile application will be developed in Flutter.


Contributing

Thank you for considering contributing to the AdoteUm.Dev, the contribution guide can be found in Contributing Guide.

Code of Conduct

In order to ensure that the Beer and Code community is welcoming to all, please review and abide by the Beer and Code Guide.


Credits


License

The AdoteUm.Dev web application is open-sourced software licensed under the MIT license.

Comments
  • Bump pestphp/pest-plugin-parallel from 0.3.1 to 1.0.0

    Bump pestphp/pest-plugin-parallel from 0.3.1 to 1.0.0

    Bumps pestphp/pest-plugin-parallel from 0.3.1 to 1.0.0.

    Changelog

    Sourced from pestphp/pest-plugin-parallel's changelog.

    Changelog

    All notable changes to this project will be documented in this file.

    The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 6
  • Allows to pass parameters to `sail test`

    Allows to pass parameters to `sail test`

    What kind of change does this PR introduce? (check at least one)

    • [ ] Bugfix
    • [x] Feature
    • [ ] Documentation
    • [ ] Code style update
    • [ ] Refactor
    • [ ] Build-related changes
    • [ ] Other, please describe:

    Does this PR introduce a breaking change? (check one)

    • [ ] Yes
    • [x] No

    If yes, please describe the impact and migration path for existing applications:

    The PR fulfills these requirements:

    • [] When resolving a specific issue, it's referenced in the PR's title (e.g. fix: #xxx[,#xxx], where "xxx" is the issue number)
    • [ ] The code proposed here was covered by testing.
    • [ ] Any necessary documentation has been added or updated in the docs or explained in the PR's description.

    If adding a new feature, the PR's description includes:

    • [x] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)

    Other information:

    I have modified the test command, so we can send parameters.

    For instance, this should allow us to specify and run a single test file:

    ./sail test tests/Feature/KnowledgeStoreTest.php
    

    It's also useful to run test groups:

    ./sail test --group=form  
    

    the command above runs only:

    <?php
    
    //...
    it('stores knowledge form')->group('form');
    it('stores interests form')->group('form');
    
    opened by dansysanalyst 4
  • including pipeline to run tests on pull request

    including pipeline to run tests on pull request

    What kind of change does this PR introduce? (check at least one)

    • [ ] Bugfix
    • [x] Feature
    • [ ] Documentation
    • [ ] Code style update
    • [ ] Refactor
    • [x] Build-related changes
    • [ ] Other, please describe:

    Does this PR introduce a breaking change? (check one)

    • [ ] Yes
    • [x] No

    Other information:

    This implementation introduces a github workflow to run tests as checks. When someone opens a PR, an action will run the tests and reviewers will be able to see if they are passing as a checklist. The in-action tests will run for PHP 8.0 and 8.1. PRs related to updating dependencies (a.k.a. dependabot) will not execute the action.

    Note: If a test was written using an external connection, you'll need to add the access info as project secrets and make sure to load them before running the test. That's why I recommend use test doubles when testing an external service, because in this way, your tests will not have external dependencies.

    opened by tombenevides 3
  • build(deps-dev): bump laravel/sail from 1.12.8 to 1.12.12

    build(deps-dev): bump laravel/sail from 1.12.8 to 1.12.12

    Bumps laravel/sail from 1.12.8 to 1.12.12.

    Release notes

    Sourced from laravel/sail's releases.

    v1.12.12

    Fixed

    • Revert "Set meilisearch data path" (#301)

    v1.12.11

    Added

    • Set meilisearch data path (#299)

    v1.12.10

    Fixed

    • ARM based container on Apple Silicon for Selenium (#294)

    v1.12.9

    Changed

    • Make PHP 8.1 the default runtime (#292)
    Changelog

    Sourced from laravel/sail's changelog.

    v1.12.12 (2021-12-16)

    Fixed

    • Revert "Set meilisearch data path" (#301)

    v1.12.11 (2021-12-14)

    Added

    • Set meilisearch data path (#299)

    v1.12.10 (2021-12-07)

    Fixed

    • ARM based container on Apple Silicon for Selenium (#294)

    v1.12.9 (2021-11-30)

    Changed

    • Make PHP 8.1 the default runtime (#292)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • build(deps): bump laravel/framework from 8.73.2 to 8.76.2

    build(deps): bump laravel/framework from 8.73.2 to 8.76.2

    Bumps laravel/framework from 8.73.2 to 8.76.2.

    Release notes

    Sourced from laravel/framework's releases.

    v8.76.1

    Reverted

    v8.76.0

    Added

    • Added possibility to customize child model route binding resolution (#39929)
    • Added Illuminate/Http/Client/Response::reason() (#39972)
    • Added an afterRefreshingDatabase test method (#39978)
    • Added unauthorized() and forbidden() to Illuminate/Http/Client/Response (#39979)
    • Publish view-component.stub in stub:publish command (#40007)
    • Added invisible modifier for MySQL columns (#40002)
    • Added Str::substrReplace() and Str::of($string)->substrReplace() methods (#39988)

    Fixed

    • Fixed parent call in view (#39909)
    • Fixed request dump and dd methods (#39931)
    • Fixed php 8.1 deprecation in ValidatesAttributes::checkDateTimeOrder (#39937)
    • Fixed withTrashed on routes check if SoftDeletes is used in Model (#39958)
    • Fixes model:prune --pretend command for models with SoftDeletes (#39991)
    • Fixed SoftDeletes force deletion sets "exists" property to false only when deletion succeeded (#39987)
    • Fixed possible out of memory error when deleting values by reference key from cache in Redis driver (#39939)
    • Fixed Password validation failure to allow errors after min rule (#40030)

    Changed

    • Fail enum validation with pure enums (#39926)
    • Remove redundant description & localize template (#39928)
    • Fixes reporting deprecations when logger is not ready yet (#39938)
    • Replace escaped dot with place holder in dependent rules parameters (#39935)
    • passthru from property to underlying query object (127334a)

    v8.75.0

    Added

    • Added Illuminate/Support/Testing/Fakes/NotificationFake::assertSentTimes() (667cca8)
    • Added Conditionable trait to ComponentAttributeBag (#39861)
    • Added scheduler integration tests (#39862)
    • Added on-demand gate authorization (#39789)
    • Added countable interface to eloquent factory sequence (#39907, 1638472a, #39915)
    • Added Fulltext index for PostgreSQL (#39875)
    • Added method filterNulls() to Arr (#39921)

    Fixed

    • Fixes AsEncrypted traits not respecting nullable columns (#39848, 4c32bf8)
    • Fixed http client factory class exists bugfix (#39851)
    • Fixed calls to Connection::rollBack() with incorrect case (#39874)
    • Fixed bug where columns would be guarded while filling Eloquent models during unit tests (#39880)
    • Fixed for dropping columns when using MSSQL as database (#39905)

    Changed

    • Add proper paging offset when possible to sql server (#39863)

    ... (truncated)

    Changelog

    Sourced from laravel/framework's changelog.

    Release Notes for 8.x

    Unreleased

    v8.76.1 (2021-12-14)

    Reverted

    v8.76.0 (2021-12-14)

    Added

    • Added possibility to customize child model route binding resolution (#39929)
    • Added Illuminate/Http/Client/Response::reason() (#39972)
    • Added an afterRefreshingDatabase test method (#39978)
    • Added unauthorized() and forbidden() to Illuminate/Http/Client/Response (#39979)
    • Publish view-component.stub in stub:publish command (#40007)
    • Added invisible modifier for MySQL columns (#40002)
    • Added Str::substrReplace() and Str::of($string)->substrReplace() methods (#39988)

    Fixed

    • Fixed parent call in view (#39909)
    • Fixed request dump and dd methods (#39931)
    • Fixed php 8.1 deprecation in ValidatesAttributes::checkDateTimeOrder (#39937)
    • Fixed withTrashed on routes check if SoftDeletes is used in Model (#39958)
    • Fixes model:prune --pretend command for models with SoftDeletes (#39991)
    • Fixed SoftDeletes force deletion sets "exists" property to false only when deletion succeeded (#39987)
    • Fixed possible out of memory error when deleting values by reference key from cache in Redis driver (#39939)
    • Fixed Password validation failure to allow errors after min rule (#40030)

    Changed

    • Fail enum validation with pure enums (#39926)
    • Remove redundant description & localize template (#39928)
    • Fixes reporting deprecations when logger is not ready yet (#39938)
    • Replace escaped dot with place holder in dependent rules parameters (#39935)
    • passthru from property to underlying query object (127334a)

    v8.75.0 (2021-12-07)

    Added

    • Added Illuminate/Support/Testing/Fakes/NotificationFake::assertSentTimes() (667cca8)
    • Added Conditionable trait to ComponentAttributeBag (#39861)
    • Added scheduler integration tests (#39862)
    • Added on-demand gate authorization (#39789)
    • Added countable interface to eloquent factory sequence (#39907, 1638472a, #39915)
    • Added Fulltext index for PostgreSQL (#39875)
    • Added method filterNulls() to Arr (#39921)

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • build(deps): bump laravel/framework from 8.73.2 to 8.76.1

    build(deps): bump laravel/framework from 8.73.2 to 8.76.1

    Bumps laravel/framework from 8.73.2 to 8.76.1.

    Release notes

    Sourced from laravel/framework's releases.

    v8.76.1

    Reverted

    v8.76.0

    Added

    • Added possibility to customize child model route binding resolution (#39929)
    • Added Illuminate/Http/Client/Response::reason() (#39972)
    • Added an afterRefreshingDatabase test method (#39978)
    • Added unauthorized() and forbidden() to Illuminate/Http/Client/Response (#39979)
    • Publish view-component.stub in stub:publish command (#40007)
    • Added invisible modifier for MySQL columns (#40002)
    • Added Str::substrReplace() and Str::of($string)->substrReplace() methods (#39988)

    Fixed

    • Fixed parent call in view (#39909)
    • Fixed request dump and dd methods (#39931)
    • Fixed php 8.1 deprecation in ValidatesAttributes::checkDateTimeOrder (#39937)
    • Fixed withTrashed on routes check if SoftDeletes is used in Model (#39958)
    • Fixes model:prune --pretend command for models with SoftDeletes (#39991)
    • Fixed SoftDeletes force deletion sets "exists" property to false only when deletion succeeded (#39987)
    • Fixed possible out of memory error when deleting values by reference key from cache in Redis driver (#39939)
    • Fixed Password validation failure to allow errors after min rule (#40030)

    Changed

    • Fail enum validation with pure enums (#39926)
    • Remove redundant description & localize template (#39928)
    • Fixes reporting deprecations when logger is not ready yet (#39938)
    • Replace escaped dot with place holder in dependent rules parameters (#39935)
    • passthru from property to underlying query object (127334a)

    v8.75.0

    Added

    • Added Illuminate/Support/Testing/Fakes/NotificationFake::assertSentTimes() (667cca8)
    • Added Conditionable trait to ComponentAttributeBag (#39861)
    • Added scheduler integration tests (#39862)
    • Added on-demand gate authorization (#39789)
    • Added countable interface to eloquent factory sequence (#39907, 1638472a, #39915)
    • Added Fulltext index for PostgreSQL (#39875)
    • Added method filterNulls() to Arr (#39921)

    Fixed

    • Fixes AsEncrypted traits not respecting nullable columns (#39848, 4c32bf8)
    • Fixed http client factory class exists bugfix (#39851)
    • Fixed calls to Connection::rollBack() with incorrect case (#39874)
    • Fixed bug where columns would be guarded while filling Eloquent models during unit tests (#39880)
    • Fixed for dropping columns when using MSSQL as database (#39905)

    Changed

    • Add proper paging offset when possible to sql server (#39863)

    ... (truncated)

    Changelog

    Sourced from laravel/framework's changelog.

    v8.76.0 (2021-12-14)

    Reverted

    v8.76.0 (2021-12-14)

    Added

    • Added possibility to customize child model route binding resolution (#39929)
    • Added Illuminate/Http/Client/Response::reason() (#39972)
    • Added an afterRefreshingDatabase test method (#39978)
    • Added unauthorized() and forbidden() to Illuminate/Http/Client/Response (#39979)
    • Publish view-component.stub in stub:publish command (#40007)
    • Added invisible modifier for MySQL columns (#40002)
    • Added Str::substrReplace() and Str::of($string)->substrReplace() methods (#39988)

    Fixed

    • Fixed parent call in view (#39909)
    • Fixed request dump and dd methods (#39931)
    • Fixed php 8.1 deprecation in ValidatesAttributes::checkDateTimeOrder (#39937)
    • Fixed withTrashed on routes check if SoftDeletes is used in Model (#39958)
    • Fixes model:prune --pretend command for models with SoftDeletes (#39991)
    • Fixed SoftDeletes force deletion sets "exists" property to false only when deletion succeeded (#39987)
    • Fixed possible out of memory error when deleting values by reference key from cache in Redis driver (#39939)
    • Fixed Password validation failure to allow errors after min rule (#40030)

    Changed

    • Fail enum validation with pure enums (#39926)
    • Remove redundant description & localize template (#39928)
    • Fixes reporting deprecations when logger is not ready yet (#39938)
    • Replace escaped dot with place holder in dependent rules parameters (#39935)
    • passthru from property to underlying query object (127334a)

    v8.75.0 (2021-12-07)

    Added

    • Added Illuminate/Support/Testing/Fakes/NotificationFake::assertSentTimes() (667cca8)
    • Added Conditionable trait to ComponentAttributeBag (#39861)
    • Added scheduler integration tests (#39862)
    • Added on-demand gate authorization (#39789)
    • Added countable interface to eloquent factory sequence (#39907, 1638472a, #39915)
    • Added Fulltext index for PostgreSQL (#39875)
    • Added method filterNulls() to Arr (#39921)

    Fixed

    • Fixes AsEncrypted traits not respecting nullable columns (#39848, 4c32bf8)
    • Fixed http client factory class exists bugfix (#39851)
    • Fixed calls to Connection::rollBack() with incorrect case (#39874)

    ... (truncated)

    Commits
    • 83fe447 patch
    • bf949b8 Revert "[8.x] Fix possible out of memory error when deleting values by refere...
    • bd442ac fix conflicts
    • 103df9f patch
    • cd11f32 [8.x] Fix Password validation failure to allow errors after min rule (#40030)
    • c122970 Test the model:prune command pruning soft deleted models (#40023)
    • 07c14c5 [8.x] update changelog
    • 00a3c25 [8.x] Fix possible out of memory error when deleting values by reference key ...
    • 127334a passthru from property to underlying query object
    • 24fc129 [8.x] Fixed SoftDeletes force deletion sets "exists" property to false only w...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • build(deps-dev): bump laravel/sail from 1.12.8 to 1.12.11

    build(deps-dev): bump laravel/sail from 1.12.8 to 1.12.11

    Bumps laravel/sail from 1.12.8 to 1.12.11.

    Release notes

    Sourced from laravel/sail's releases.

    v1.12.11

    Added

    • Set meilisearch data path (#299)

    v1.12.10

    Fixed

    • ARM based container on Apple Silicon for Selenium (#294)

    v1.12.9

    Changed

    • Make PHP 8.1 the default runtime (#292)
    Changelog

    Sourced from laravel/sail's changelog.

    v1.12.11 (2021-12-14)

    Added

    • Set meilisearch data path (#299)

    v1.12.10 (2021-12-07)

    Fixed

    • ARM based container on Apple Silicon for Selenium (#294)

    v1.12.9 (2021-11-30)

    Changed

    • Make PHP 8.1 the default runtime (#292)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • build(deps-dev): bump fakerphp/faker from 1.16.0 to 1.17.0

    build(deps-dev): bump fakerphp/faker from 1.16.0 to 1.17.0

    Bumps fakerphp/faker from 1.16.0 to 1.17.0.

    Release notes

    Sourced from fakerphp/faker's releases.

    v1.17.0

    • Partial PHP 8.1 compatibility (#373)
    • Add payment provider for ne_NP locale (#375)
    • Add Egyptian Arabic ar_EG locale (#377)
    • Updated list of South African TLDs (#383)
    • Fixed formatting of E.164 numbers (#380)
    • Allow symfony/deprecation-contracts ^3.0 (#397)
    Changelog

    Sourced from fakerphp/faker's changelog.

    2021-12-05, v1.17.0

    • Partial PHP 8.1 compatibility (#373)
    • Add payment provider for ne_NP locale (#375)
    • Add Egyptian Arabic ar_EG locale (#377)
    • Updated list of South African TLDs (#383)
    • Fixed formatting of E.164 numbers (#380)
    • Allow symfony/deprecation-contracts ^3.0 (#397)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • build(deps): bump livewire/livewire from 2.8.0 to 2.8.2

    build(deps): bump livewire/livewire from 2.8.0 to 2.8.2

    Bumps livewire/livewire from 2.8.0 to 2.8.2.

    Release notes

    Sourced from livewire/livewire's releases.

    v2.8.2

    What's Changed

    New Contributors

    Full Changelog: https://github.com/livewire/livewire/compare/v2.8.1...v2.8.2

    v2.8.1

    Fixed

    Full Changelog: https://github.com/livewire/livewire/compare/v2.8.0...v2.8.1

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
  • Aud profile screen

    Aud profile screen

    What kind of change does this PR introduce? (check at least one)

    • [ ] Bugfix
    • [x] Feature
    • [ ] Documentation
    • [ ] Code style update
    • [x] Refactor
    • [x] Build-related changes
    • [ ] Other, please describe:

    Does this PR introduce a breaking change? (check one)

    • [x] Yes
    • [ ] No

    If yes, please describe the impact and migration path for existing applications: Alterada coluna de avatar de varchar, para text para suportar possíveis nomes maiores, como hash gerada pelo TemporaryUrl(). Adicionado Profile na Seed de usuários.

    The PR fulfills these requirements:

    • [ ] When resolving a specific issue, it's referenced in the PR's title (e.g. fix: #xxx[,#xxx], where "xxx" is the issue number)
    • [x] The code proposed here was covered by testing.
    • [ ] Any necessary documentation has been added or updated in the docs or explained in the PR's description.

    If adding a new feature, the PR's description includes:

    • [x] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)

    Other information:

    Profile Screen

    Adição de tela de profile, permitindo edição do avatar e links para editar interesses e conhecimentos. Apesar da falta da skill "designer", foi criada uma tela baseada em telas, cores e estética visual pré existente, conforme imagem a seguir:

    print01

    Profile Screen .env

    Alterado FILESYSTEM_DRIVER .env e .env_example para utilização no upload do avatar.

    FILESYSTEM_DRIVER=public

    Opção de edição nos componentes Interests e Knowledge Screen

    Adicionado às rotas de interests e knowledge, um parâmetro opcional "edit", para diferenciar e agregar ao projeto, usado para validar carregamentos de dados nas telas que as utilizam. Na imagem a seguir, mostro o uso do parâmetro no método mount do componente InterestScreen, onde da mesma forma, é usado no componente KnowledgeScreen.

    print02

    Testes

    Testes para o componente ProfileScreen contemplam:

    • Tentativa de acesso sem autenticação;
    • Acesso autenticado;
    • Upload de avatar;
       PASS  Tests\Feature\ProfileScreenTest
      ✓ it checks if ProfileScreen required auth
      ✓ it checks if ProfileScreen Component was rendered with auth
      ✓ it checks if ProfileScreen Component was upload avatar
    
      Tests:  3 passed
      Tests:  3 passed
      Time:   0.64s
    
    opened by kelver 1
  • build(deps-dev): bump laravel/sail from 1.12.8 to 1.12.10

    build(deps-dev): bump laravel/sail from 1.12.8 to 1.12.10

    Bumps laravel/sail from 1.12.8 to 1.12.10.

    Release notes

    Sourced from laravel/sail's releases.

    v1.12.10

    Fixed

    • ARM based container on Apple Silicon for Selenium (#294)

    v1.12.9

    Changed

    • Make PHP 8.1 the default runtime (#292)
    Changelog

    Sourced from laravel/sail's changelog.

    v1.12.10 (2021-12-07)

    Fixed

    • ARM based container on Apple Silicon for Selenium (#294)

    v1.12.9 (2021-11-30)

    Changed

    • Make PHP 8.1 the default runtime (#292)
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 1
Owner
Beer And Code
Beer And Code
Server manager is a open source project made for people so that they can add the servers to one single place irrespective of their provider and manage it through one location.

Server Manager Are you sick of having to log into hundreads of different website just to access your server? Well we got you, Server manager is a open

null 8 Aug 9, 2022
A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.

Lychee A great looking and easy-to-use photo-management-system. Since the 1st of April 2018 this project has moved to it's own Organisation (https://g

Tobias Reich 6.2k Jan 5, 2023
A simple, not so bad looking Minecraft Server's website template

Minecraft Server 官网模板 本仓库为 Minecraft 服务器官网模板,主要通过 Bootstrap 和 Argon 组件库实现 本项目基于 https://github.com/nyancatda/mcserverweb 二开 config.json参数说明 参数 说明 备注 s

GBCLStudio 邱晨晟曦 2 Mar 4, 2022
Modern, simple and fresh looking glass based on Bootstrap 5 and PHP 7

Modern, simple and fresh looking glass based on Bootstrap 5 and PHP 7. A looking glass is a network utility which is made user-friendly for everyone to use. It allows you to execute network related commands within a remote network, usually that of an ISP.

Hybula 77 Jan 1, 2023
Let's dev a PHP Web Blog

My Own PHP Blog Last update: 02 december 2021 Owner: Julián Campos Pérez Website: https://juliancampos.es Twitter: https://twitter.com/juliancamposes

Julián Campos 2 Dec 3, 2021
Cool git for cool people.

Welcome to AIP Ticket System ?? Ticket Management Service for IT Support Requests ✨ Setup Guide Clone Source code to your local machine Download XAMPP

null 2 Jun 20, 2022
A simple web application that demonstrates how to quickly connect to and communicate with a MariaDB database using PHP

PHP Quickstart This repository contains a simple web application that demonstrates how to quickly connect to and communicate with a MariaDB database u

Developer Code Central 8 Nov 6, 2022
An online quiz system built on PHP, JS and HTML. It has inbuilt Timer support along with Admin Panel

Skill's Breaker An online quiz system built on PHP, JS and HTML. It has inbuilt Timer support along with Admin Panel #Added features: Added Timer supp

null 2 Jul 16, 2022
One time password generator, validator, and qrcode generator that has no web dependencies (self-contained) in PHP

otp-thing One time password generator, validator, and qrcode generator that has no web dependencies (self-contained) in PHP Introduction This started

Daniel Krusky 25 Apr 29, 2022
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.

GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.

GitScrum 2.8k Jan 6, 2023
ControlPanel's Dashboard is a dashboard application designed to offer clients a management tool to manage their pterodactyl servers.

Features PayPal Integration Email Verification Audit Log Admin Dashboard User/Server Management Store (credit system) Vouchers and so much more! Contr

ControlPanel.gg 223 Jan 5, 2023
Livewire component to show records according to their current status

Livewire Status Board Livewire component to show records/data according to their current status Preview Installation You can install the package via c

Andrés Santibáñez 288 Dec 24, 2022
A PHP package that retrieves Uganda's districts with their respective counties, sub counties, parishes and villages in Uganda.

This package gives you the leverage to access all sub levels ranging from districts, counties, subcounties, parishes to villages in Uganda. You can also access the different mentioned areas independently.

Joshua Kusaasira 2 Oct 28, 2022
Kyle is a web application built with Laravel for web developers and small companies to efficiently track and stay on top of yearly expenses related to services

Kyle Kyle is a web application built with Laravel for web developers and small companies to efficiently track and stay on top of yearly expenses relat

Laravelista 36 Jul 15, 2022
A wiki to ease developers' work by providing a user authentication librariesthat can be used as middleware within a web application to authenticate

A wiki to ease developers' work by providing a user authentication librariesthat can be used as middleware within a web application to authenticate (their application user) requests.

Zuri Training 6 Aug 8, 2022
Provides access to Cloudflare Images API for Laravel projects

Cloudflare Images Provides access to Cloudflare Images API for Laravel projects Table of contents Installation Configuration Using Installation To get

Dmytro 20 Dec 16, 2022
A slim, lean forum package designed for quick and easy integration in Laravel projects

Complete documentation is available on teamteatime.net. Installation Requires Laravel 6+ and PHP 7.4+. Step 1: Install the package Install the package

TeamTeaTime 486 Dec 31, 2022
Sign URLs with expiration date to transfer data between projects.

SafeLink Framework-agnostic, lightweight URL signer. You can use SafeLink to transfer data between projects. Sign the url in project 1: use Alfatron\S

Ozan Hazer 4 Feb 2, 2022
ATOS is a locally hosted application that allows you to easily manage clients/projects, generate invoices against backlogs, and estimate taxes.

Built by freelancer ??‍♂️, for freelancer ?? ?? ???? - ATOS is a locally hosted application that allows you to easily manage clients/projects, generate invoices against backlogs, and estimate taxes.

Jon Belelieu 33 Dec 27, 2022