Skip to content

Commit 55ce3e5

Browse files
authored
Merge branch 'master' into dependabot/composer/slevomat/coding-standard-tw-7.0
2 parents f52e7ae + 923bbb8 commit 55ce3e5

23 files changed

+524
-264
lines changed

.github/workflows/laravel.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php: [7.3, 7.4, 8.0]
17+
php: [8.2, 8.1]
1818

1919
name: PHP ${{ matrix.php }}
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- name: Checkout code
23+
uses: actions/checkout@v3
2324

2425
- name: Cache dependencies
2526
uses: actions/cache@v1

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
composer.lock
44
.phpunit.result.cache
55
phpunit.xml
6+
.idea

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.12.5] - 2022-07-30
8+
### Added
9+
- pivotSynced event listener to flush cache when performing BelongsToMany::sync
10+
11+
[...]
12+
713
## [0.10.3] - 2021-03-16
814
### Changed
915
- The from part of the query ($query->from) instead of the table name of the model ($model->table)

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
## Supporting This Package
1313
This is an MIT-licensed open source project with its ongoing development made possible by the support of the community. If you'd like to support this, and our other packages, please consider [becoming a sponsor](https://github.com/sponsors/mikebronner).
1414

15+
We thank the following sponsors for their generosity, please take a moment to check them out:
16+
17+
- [LIX](https://lix-it.com)
18+
1519
## Impetus
1620
I created this package in response to a client project that had complex, nested
1721
forms with many `<select>`'s that resulted in over 700 database queries on one

composer.json

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,29 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7.3|^8.0",
19-
"genealabs/laravel-pivot-events": "^8.0",
20-
"illuminate/cache": "^8.0",
21-
"illuminate/config": "^8.0",
22-
"illuminate/console": "^8.0",
23-
"illuminate/container": "^8.0",
24-
"illuminate/database": "^8.0",
25-
"illuminate/http": "^8.0",
26-
"illuminate/support": "^8.0"
18+
"php": "^8.1",
19+
"genealabs/laravel-pivot-events": "^10.0",
20+
"illuminate/cache": "^10.0",
21+
"illuminate/config": "^10.0",
22+
"illuminate/console": "^10.0",
23+
"illuminate/container": "^10.0",
24+
"illuminate/database": "^10.0",
25+
"illuminate/http": "^10.0",
26+
"illuminate/support": "^10.0"
2727
},
2828
"require-dev": {
29-
"doctrine/dbal": "^2.10",
29+
"doctrine/dbal": "^3.3",
3030
"fakerphp/faker": "^1.11",
3131
"laravel/nova": "^3.9",
32-
"orchestra/testbench-browser-kit": "^6.0",
33-
"orchestra/testbench": "^6.0",
32+
"orchestra/testbench-browser-kit": "^8.0",
33+
"orchestra/testbench": "^8.0",
3434
"php-coveralls/php-coveralls" : "^2.2",
35-
"phpmd/phpmd": "^2.7",
36-
"phpunit/phpunit": "^9.0",
35+
"phpmd/phpmd": "^2.11",
36+
"phpunit/phpunit": "^9.5",
3737
"slevomat/coding-standard": "^7.0",
38-
"squizlabs/php_codesniffer": "^3.4",
38+
"squizlabs/php_codesniffer": "^3.6",
3939
"symfony/thanks": "^1.2",
40-
"laravel/legacy-factories": "^1.0"
40+
"laravel/legacy-factories": "^1.3"
4141
},
4242
"autoload": {
4343
"psr-4": {
@@ -61,5 +61,11 @@
6161
}
6262
},
6363
"minimum-stability": "dev",
64-
"prefer-stable": true
64+
"prefer-stable": true,
65+
"config": {
66+
"allow-plugins": {
67+
"symfony/thanks": true,
68+
"dealerdirect/phpcodesniffer-composer-installer": true
69+
}
70+
}
6571
}

0 commit comments

Comments
 (0)