Skip to content

Commit 08802f4

Browse files
committed
Adapt changes in Yii Data
1 parent ab670c3 commit 08802f4

33 files changed

+64
-84
lines changed

.gitattributes

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,16 @@
2121
*.gif binary
2222
*.ttf binary
2323

24-
# Ignore some meta files when creating an archive of this repository
25-
/.github export-ignore
26-
/.editorconfig export-ignore
27-
/.gitattributes export-ignore
28-
/.gitignore export-ignore
29-
/.phpunit-watcher.yml export-ignore
30-
/.styleci.yml export-ignore
31-
/infection.json.dist export-ignore
32-
/phpunit.xml.dist export-ignore
33-
/psalm.xml export-ignore
34-
/tests export-ignore
35-
/docs export-ignore
24+
# Exclude development and metadata files from distribution archive
25+
* export-ignore
26+
/src/ -export-ignore
27+
/src/** -export-ignore
28+
/tests/ -export-ignore
29+
/tests/** -export-ignore
30+
/composer.json -export-ignore
31+
/README.md -export-ignore
32+
/CHANGELOG.md -export-ignore
33+
/LICENSE.md -export-ignore
3634

3735
# Avoid merge conflicts in CHANGELOG
3836
# https://about.gitlab.com/2015/02/10/gitlab-reduced-merge-conflicts-by-90-percent-with-changelog-placeholders/

.github/workflows/bc.yml_

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
os: >-
3131
['ubuntu-latest']
3232
php: >-
33-
['8.3']
33+
['8.4']

.github/workflows/composer-require-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
os: >-
3232
['ubuntu-latest']
3333
php: >-
34-
['8.1', '8.2', '8.3', '8.4']
34+
['8.1', '8.2', '8.3', '8.4', '8.5']

.github/workflows/mssql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- 8.2
3535
- 8.3
3636
- 8.4
37+
- 8.5
3738

3839
mssql:
3940
- server: 2022-latest

.github/workflows/mutation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
os: >-
2828
['ubuntu-latest']
2929
php: >-
30-
['8.4']
30+
['8.5']
3131
min-covered-msi: 100
3232
secrets:
3333
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

.github/workflows/mysql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- 8.2
4242
- 8.3
4343
- 8.4
44+
- 8.5
4445

4546
mysql:
4647
- 5.7

.github/workflows/pgsql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
- 8.2
4242
- 8.3
4343
- 8.4
44+
- 8.5
4445

4546
pgsql:
4647
- 9

.github/workflows/sqlite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- 8.2
3838
- 8.3
3939
- 8.4
40+
- 8.5
4041

4142
steps:
4243
- name: Checkout.

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
os: >-
3030
['ubuntu-latest']
3131
php: >-
32-
['8.1', '8.2', '8.3', '8.4']
32+
['8.1', '8.2', '8.3', '8.4', '8.5']

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
"ext-mbstring": "*",
3737
"cycle/database": "^2.11",
3838
"cycle/orm": "^2.9",
39-
"yiisoft/data": "dev-master"
39+
"yiisoft/data": "^2.0"
4040
},
4141
"require-dev": {
4242
"maglnet/composer-require-checker": "^4.7",
4343
"phpunit/phpunit": "^10.5",
4444
"rector/rector": "^2.1.5",
4545
"roave/infection-static-analysis-plugin": "^1.35",
4646
"spatie/phpunit-watcher": "^1.24",
47-
"vimeo/psalm": "^5.26.1 || ^6.10.3",
47+
"vimeo/psalm": "^6.14.1",
4848
"vlucas/phpdotenv": "^5.6"
4949
},
5050
"autoload": {

0 commit comments

Comments
 (0)