Skip to content

Commit a96a3e6

Browse files
Merge branch '11.0' into 11.1
2 parents bf3056c + ad6011e commit a96a3e6

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

.github/stale.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
daysUntilStale: 120
2+
daysUntilClose: 30
3+
staleLabel: stale
4+
markComment: >
5+
This issue has been automatically marked as stale because there has been no
6+
recent activity. It will be closed after 30 days if no further activity
7+
occurs. Thank you for your contributions.
8+
closeComment: false

LICENSE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22

3-
Copyright (c) 2012 Matt Humphrey <[email protected]>
4-
Copyright (c) 2018 Graham Campbell <[email protected]>
3+
Copyright (c) 2012-2018 Matt Humphrey <[email protected]>
4+
Copyright (c) 2018-2021 Graham Campbell <[email protected]>
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -10,13 +10,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
copies of the Software, and to permit persons to whom the Software is
1111
furnished to do so, subject to the following conditions:
1212

13-
The above copyright notice and this permission notice shall be included in all
14-
copies or substantial portions of the Software.
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
1515

1616
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1919
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2020
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22-
SOFTWARE.
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ This version supports [PHP](https://php.net) 7.2-8.0. To get started, simply req
2727

2828
### Standard Installation
2929

30-
```
31-
$ composer require m4tthumphrey/php-gitlab-api:^11.1 guzzlehttp/guzzle:^7.2 http-interop/http-factory-guzzle:^1.0
30+
```bash
31+
$ composer require "m4tthumphrey/php-gitlab-api:^11.1" "guzzlehttp/guzzle:^7.2" "http-interop/http-factory-guzzle:^1.0"
3232
```
3333

3434
### Framework Integration
3535

3636
#### Laravel:
3737

38-
```
39-
$ composer require graham-campbell/gitlab:^5.1 guzzlehttp/guzzle:^7.2 http-interop/http-factory-guzzle:^1.0
38+
```bash
39+
$ composer require "graham-campbell/gitlab:^5.1" "guzzlehttp/guzzle:^7.2" "http-interop/http-factory-guzzle:^1.0"
4040
```
4141

4242
#### Symfony:
4343

44-
```
45-
$ composer require zeichen32/gitlabapibundle:^6.0 symfony/http-client:^5.2 nyholm/psr7:^1.3
44+
```bash
45+
$ composer require "zeichen32/gitlabapibundle:^6.0" "symfony/http-client:^5.2" "nyholm/psr7:^1.3"
4646
```
4747

4848
We are decoupled from any HTTP messaging client by using [PSR-7](https://www.php-fig.org/psr/psr-7/), [PSR-17](https://www.php-fig.org/psr/psr-17/), [PSR-18](https://www.php-fig.org/psr/psr-18/), and [HTTPlug](https://httplug.io/). You can visit [HTTPlug for library users](https://docs.php-http.org/en/latest/httplug/users.html) to get more information about installing HTTPlug related packages. The framework integration [graham-campbell/gitlab](https://github.com/GrahamCampbell/Laravel-GitLab) is by [Graham Campbell](https://github.com/GrahamCampbell) and [zeichen32/gitlabapibundle](https://github.com/Zeichen32/GitLabApiBundle) is by [Jens Averkamp](https://github.com/Zeichen32).

vendor-bin/phpstan/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"require": {
33
"php": "^7.2.5 || ^8.0",
4-
"phpstan/phpstan": "0.12.64",
4+
"phpstan/phpstan": "0.12.69",
55
"phpstan/phpstan-deprecation-rules": "0.12.6",
6-
"phpstan/phpstan-strict-rules": "0.12.5",
6+
"phpstan/phpstan-strict-rules": "0.12.9",
77
"thecodingmachine/phpstan-strict-rules": "0.12.1",
88
"ergebnis/phpstan-rules": "0.15.3"
99
},

vendor-bin/phpunit/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.2.5 || ^8.0",
4-
"phpunit/phpunit": "^8.5.13 || ^9.4.4"
4+
"phpunit/phpunit": "^8.5.14 || ^9.5.1"
55
},
66
"config": {
77
"preferred-install": "dist"

0 commit comments

Comments
 (0)