Skip to content

Chore/extend worklows #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
feature: ['feature/*', 'feat/*']
fix: fix/*
chore: chore/*
14 changes: 14 additions & 0 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
@@ -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 }}
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
104 changes: 53 additions & 51 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
}
],
"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": "[email protected]"
}
],
"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
}