Skip to content

Commit 4bee511

Browse files
authored
Chore/extend worklows (#1)
* refactor(chore): Add pr labeler workflow * refactor(chore): Update composer.json & Readme with badges * refactor(chore): change labeler config Co-authored-by: Gregor Becker <[email protected]>
1 parent 4fc6f7b commit 4bee511

File tree

4 files changed

+73
-52
lines changed

4 files changed

+73
-52
lines changed

.github/pr-labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
feature: ['feature/*', 'feat/*']
2+
fix: fix/*
3+
chore: chore/*

.github/workflows/pr-labeler.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: PR Labeler
2+
on:
3+
pull_request:
4+
types: [opened]
5+
6+
jobs:
7+
pr-labeler:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: TimonVS/pr-labeler-action@v3
11+
with:
12+
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Laravel SOAP Client
22

33
[![Software License](https://img.shields.io/github/license/codedredd/laravel-soap?style=flat-square)](LICENSE.md)
4-
[![Total Downloads](https://img.shields.io/github/downloads/codedredd/laravel-soap/total)]()
4+
[![Total Downloads](https://img.shields.io/github/downloads/codedredd/laravel-soap/total?style=flat-square)]()
5+
![test](https://img.shields.io/github/workflow/status/codedredd/laravel-soap/test?style=flat-square)
6+
![version](https://img.shields.io/github/v/release/codedredd/laravel-soap?style=flat-square)
57

68
- [Introduction](#introduction)
79
- [Making Requests](#making-requests)

composer.json

Lines changed: 53 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,53 @@
1-
{
2-
"name": "codedredd/laravel-soap",
3-
"description": "A SoapClient wrapper integration for Laravel",
4-
"keywords": ["laravel", "soap", "client", "wrapper"],
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Gregor Becker",
9-
"email": "[email protected]"
10-
}
11-
],
12-
"require": {
13-
"php": ">=7.2.0",
14-
"ext-soap": "*",
15-
"ext-json": "*",
16-
"illuminate/support": "^5.6 || ^6.0 || ^7.0",
17-
"phpro/soap-client": "^1.1",
18-
"php-http/guzzle6-adapter": "^2.0",
19-
"php-http/discovery": "^1.7",
20-
"php-http/message": "^1.8",
21-
"php-http/client-common": "^2.1",
22-
"robrichards/wse-php": "^2.0",
23-
"guzzlehttp/guzzle": "^6.5"
24-
},
25-
"require-dev": {
26-
"symfony/var-dumper": "^5.0",
27-
"phpunit/phpunit": "^9.1",
28-
"mockery/mockery": "^1.3",
29-
"orchestra/testbench": "^5.1"
30-
},
31-
"autoload": {
32-
"psr-4": {
33-
"CodeDredd\\Soap\\": "src/"
34-
}
35-
},
36-
"autoload-dev": {
37-
"psr-4": {
38-
"CodeDredd\\Soap\\Tests\\": "tests/"
39-
}
40-
},
41-
"extra": {
42-
"laravel": {
43-
"providers": [
44-
"CodeDredd\\Soap\\SoapServiceProvider"
45-
],
46-
"aliases": {
47-
"SOAP": "SoapFacade"
48-
}
49-
}
50-
}
51-
}
1+
{
2+
"name": "codedredd/laravel-soap",
3+
"description": "A SoapClient wrapper integration for Laravel",
4+
"keywords": ["laravel", "soap", "client", "wrapper"],
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Gregor Becker",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": ">=7.2.0",
14+
"ext-soap": "*",
15+
"ext-json": "*",
16+
"illuminate/support": "^5.6 || ^6.0 || ^7.0",
17+
"phpro/soap-client": "^1.1",
18+
"php-http/guzzle6-adapter": "^2.0",
19+
"php-http/discovery": "^1.7",
20+
"php-http/message": "^1.8",
21+
"php-http/client-common": "^2.1",
22+
"robrichards/wse-php": "^2.0",
23+
"guzzlehttp/guzzle": "^6.5"
24+
},
25+
"require-dev": {
26+
"symfony/var-dumper": "^5.0",
27+
"phpunit/phpunit": "^9.1",
28+
"mockery/mockery": "^1.3",
29+
"orchestra/testbench": "^5.1"
30+
},
31+
"autoload": {
32+
"psr-4": {
33+
"CodeDredd\\Soap\\": "src/"
34+
}
35+
},
36+
"autoload-dev": {
37+
"psr-4": {
38+
"CodeDredd\\Soap\\Tests\\": "tests/"
39+
}
40+
},
41+
"extra": {
42+
"laravel": {
43+
"providers": [
44+
"CodeDredd\\Soap\\SoapServiceProvider"
45+
],
46+
"aliases": {
47+
"SOAP": "SoapFacade"
48+
}
49+
}
50+
},
51+
"minimum-stability": "dev",
52+
"prefer-stable": true
53+
}

0 commit comments

Comments
 (0)