diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml new file mode 100644 index 0000000..9c4df5e --- /dev/null +++ b/.github/pr-labeler.yml @@ -0,0 +1,3 @@ +feature: ['feature/*', 'feat/*'] +fix: fix/* +chore: chore/* \ No newline at end of file diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 0000000..9c6c65f --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,14 @@ +name: PR Labeler +on: + pull_request: + types: [opened] + +jobs: + pr-labeler: + runs-on: ubuntu-latest + steps: + - uses: TimonVS/pr-labeler-action@v3 + with: + configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/README.md b/README.md index 07ca865..aa6dd9f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # Laravel SOAP Client [![Software License](https://img.shields.io/github/license/codedredd/laravel-soap?style=flat-square)](LICENSE.md) -[![Total Downloads](https://img.shields.io/github/downloads/codedredd/laravel-soap/total)]() +[![Total Downloads](https://img.shields.io/github/downloads/codedredd/laravel-soap/total?style=flat-square)]() +![test](https://img.shields.io/github/workflow/status/codedredd/laravel-soap/test?style=flat-square) +![version](https://img.shields.io/github/v/release/codedredd/laravel-soap?style=flat-square) - [Introduction](#introduction) - [Making Requests](#making-requests) diff --git a/composer.json b/composer.json index a7e42cf..b8f2f51 100644 --- a/composer.json +++ b/composer.json @@ -1,51 +1,53 @@ -{ - "name": "codedredd/laravel-soap", - "description": "A SoapClient wrapper integration for Laravel", - "keywords": ["laravel", "soap", "client", "wrapper"], - "license": "MIT", - "authors": [ - { - "name": "Gregor Becker", - "email": "gregor@codedredd.de" - } - ], - "require": { - "php": ">=7.2.0", - "ext-soap": "*", - "ext-json": "*", - "illuminate/support": "^5.6 || ^6.0 || ^7.0", - "phpro/soap-client": "^1.1", - "php-http/guzzle6-adapter": "^2.0", - "php-http/discovery": "^1.7", - "php-http/message": "^1.8", - "php-http/client-common": "^2.1", - "robrichards/wse-php": "^2.0", - "guzzlehttp/guzzle": "^6.5" - }, - "require-dev": { - "symfony/var-dumper": "^5.0", - "phpunit/phpunit": "^9.1", - "mockery/mockery": "^1.3", - "orchestra/testbench": "^5.1" - }, - "autoload": { - "psr-4": { - "CodeDredd\\Soap\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "CodeDredd\\Soap\\Tests\\": "tests/" - } - }, - "extra": { - "laravel": { - "providers": [ - "CodeDredd\\Soap\\SoapServiceProvider" - ], - "aliases": { - "SOAP": "SoapFacade" - } - } - } -} +{ + "name": "codedredd/laravel-soap", + "description": "A SoapClient wrapper integration for Laravel", + "keywords": ["laravel", "soap", "client", "wrapper"], + "license": "MIT", + "authors": [ + { + "name": "Gregor Becker", + "email": "gregor@codedredd.de" + } + ], + "require": { + "php": ">=7.2.0", + "ext-soap": "*", + "ext-json": "*", + "illuminate/support": "^5.6 || ^6.0 || ^7.0", + "phpro/soap-client": "^1.1", + "php-http/guzzle6-adapter": "^2.0", + "php-http/discovery": "^1.7", + "php-http/message": "^1.8", + "php-http/client-common": "^2.1", + "robrichards/wse-php": "^2.0", + "guzzlehttp/guzzle": "^6.5" + }, + "require-dev": { + "symfony/var-dumper": "^5.0", + "phpunit/phpunit": "^9.1", + "mockery/mockery": "^1.3", + "orchestra/testbench": "^5.1" + }, + "autoload": { + "psr-4": { + "CodeDredd\\Soap\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "CodeDredd\\Soap\\Tests\\": "tests/" + } + }, + "extra": { + "laravel": { + "providers": [ + "CodeDredd\\Soap\\SoapServiceProvider" + ], + "aliases": { + "SOAP": "SoapFacade" + } + } + }, + "minimum-stability": "dev", + "prefer-stable": true +}