-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from codebar-ag/feature-l11
Laravel 11
- Loading branch information
Showing
24 changed files
with
151 additions
and
131 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
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,30 @@ | ||
name: release | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- main | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
INITIAL_VERSION: 11.0.0 | ||
RELEASE_BRANCHES: main | ||
DEFAULT_BUMP: patch | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: '0' | ||
- name: Bump version and push tag | ||
uses: anothrNick/github-tag-action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | ||
WITH_V: true | ||
INITIAL_VERSION: ${{ env.INITIAL_VERSION }} | ||
RELEASE_BRANCHES: ${{ env.RELEASE_BRANCHES }} | ||
DEFAULT_BUMP: ${{ env.DEFAULT_BUMP }} |
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 @@ | ||
{"version":"pest_2.36.0","defects":[],"times":{"P\\Tests\\Requests\\SingleTicketRequestTest::__pest_evaluable_it_can_get_a_single_ticket":0.001,"P\\Tests\\Requests\\CreateSingleTicketRequestTest::__pest_evaluable_it_can_get_create_a_single_ticket":0.046,"P\\Tests\\Core\\ArchTest::__pest_evaluable_it_will_not_use_any_debug_function":0.059,"P\\Tests\\Requests\\CountTicketsRequestTest::__pest_evaluable_it_can_count_all_tickets":0.001,"P\\Tests\\Requests\\AllTicketsRequestTest::__pest_evaluable_it_can_get_all_tickets":0.006,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_compile_the_correct_authentication_string_for_token_method":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_compile_the_correct_authentication_string_for_basic_method":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_not_throw_an_exception_if_a_subdomain_is_set":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_not_throw_an_exception_if_an_auth_method_valid":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_return_the_base_path":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_throw_an_exception_if_an_auth_method_is_not_set":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_throw_and_authentication_error_when_details_are_incorrect":0.001,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_throw_an_exception_if_a_token_is_not_provided_when_using_the_token_method":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_throw_an_exception_if_a_subdomain_is_not_set":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_not_throw_an_exception_if_a_password_is_provided_when_using_the_password_method":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_not_throw_an_exception_if_a_token_is_provided_when_using_the_token_method":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_throw_an_exception_if_an_auth_method_invalid":0,"P\\Tests\\Connectors\\ZendeskConnectorTest::__pest_evaluable_it_will_throw_an_exception_if_a_password_is_not_provided_when_using_the_basic_method":0,"P\\Tests\\Requests\\CreateAttachmentRequestTest::__pest_evaluable_it_can_create_an_attachment":0.001}} |
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,85 +1,85 @@ | ||
{ | ||
"name": "codebar-ag/laravel-zendesk", | ||
"description": "Zendesk integration with Laravel", | ||
"keywords": [ | ||
"zendesk", | ||
"laravel", | ||
"codebar-ag", | ||
"laravel-zendesk" | ||
], | ||
"homepage": "https://github.com/codebar-ag/laravel-zendesk", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Sebastian Fix", | ||
"email": "[email protected]", | ||
"homepage": "https://www.codebar.ch", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Rhys Lees", | ||
"role": "Software-Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.2", | ||
"guzzlehttp/guzzle": "^7.8", | ||
"illuminate/contracts": "^10.0", | ||
"laravel/framework": "^10.28", | ||
"orchestra/testbench": "^8.13", | ||
"saloonphp/cache-plugin": "^3.0", | ||
"saloonphp/laravel-plugin": "^3.0", | ||
"saloonphp/saloon": "^3.0", | ||
"spatie/laravel-data": "^3.9", | ||
"spatie/laravel-package-tools": "^1.16" | ||
"name": "codebar-ag/laravel-zendesk", | ||
"description": "Zendesk integration with Laravel", | ||
"keywords": [ | ||
"zendesk", | ||
"laravel", | ||
"codebar-ag", | ||
"laravel-zendesk" | ||
], | ||
"homepage": "https://github.com/codebar-ag/laravel-zendesk", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Sebastian Bürgi ", | ||
"email": "[email protected]", | ||
"homepage": "https://www.codebar.ch", | ||
"role": "Developer" | ||
}, | ||
"require-dev": { | ||
"laravel/pint": "^1.13", | ||
"nunomaduro/collision": "^7.10", | ||
"nunomaduro/larastan": "^2.6", | ||
"orchestra/testbench": "^8.13", | ||
"pestphp/pest": "^2.23", | ||
"pestphp/pest-plugin-laravel": "^2.2", | ||
"phpstan/extension-installer": "^1.3", | ||
"phpstan/phpstan-deprecation-rules": "^1.1", | ||
"phpstan/phpstan-phpunit": "^1.3", | ||
"spatie/laravel-ray": "^1.33" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"CodebarAg\\Zendesk\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"CodebarAg\\Zendesk\\Tests\\": "tests" | ||
} | ||
}, | ||
"scripts": { | ||
"analyse": "vendor/bin/phpstan analyse", | ||
"test": "vendor/bin/pest", | ||
"test-coverage": "vendor/bin/pest --coverage", | ||
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes" | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": false, | ||
"pestphp/pest-plugin": true, | ||
"phpstan/extension-installer": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"CodebarAg\\Zendesk\\ZendeskServiceProvider" | ||
], | ||
"aliases": { | ||
"Flatfox": "CodebarAg\\Zendesk\\Facades\\Zendesk" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
{ | ||
"name": "Rhys Lees", | ||
"role": "Software-Developer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.2", | ||
"guzzlehttp/guzzle": "^7.8", | ||
"illuminate/contracts": "^11.0", | ||
"laravel/framework": "^11.0", | ||
"saloonphp/cache-plugin": "^3.0", | ||
"saloonphp/laravel-plugin": "^3.2", | ||
"saloonphp/saloon": "^3.4", | ||
"spatie/laravel-data": "^4.13.1", | ||
"spatie/laravel-package-tools": "^1.16" | ||
}, | ||
"require-dev": { | ||
"laravel/pint": "^1.14", | ||
"nunomaduro/collision": "^8.1", | ||
"larastan/larastan": "^2.8", | ||
"orchestra/testbench": "^9.0", | ||
"pestphp/pest": "^2.34", | ||
"pestphp/pest-plugin-laravel": "^2.3", | ||
"phpstan/extension-installer": "^1.3", | ||
"phpstan/phpstan-deprecation-rules": "^1.1", | ||
"phpstan/phpstan-phpunit": "^1.3", | ||
"pestphp/pest-plugin-arch": "^2.7", | ||
"spatie/laravel-ray": "^1.35" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"CodebarAg\\Zendesk\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"CodebarAg\\Zendesk\\Tests\\": "tests" | ||
} | ||
}, | ||
"scripts": { | ||
"analyse": "vendor/bin/phpstan analyse", | ||
"test": "vendor/bin/pest", | ||
"test-coverage": "vendor/bin/pest --coverage", | ||
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes" | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": false, | ||
"pestphp/pest-plugin": true, | ||
"phpstan/extension-installer": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"CodebarAg\\Zendesk\\ZendeskServiceProvider" | ||
], | ||
"aliases": { | ||
"Flatfox": "CodebarAg\\Zendesk\\Facades\\Zendesk" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": 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
Oops, something went wrong.