Skip to content

Commit 51adff7

Browse files
committed
Merge branch 'cleanup'
2 parents 486e495 + 033f209 commit 51adff7

File tree

109 files changed

+5327
-2071
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+5327
-2071
lines changed

.git-blame-ignore-revs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,16 @@
11
# .git-blame-ignore-revs
2-
# Update formatting
32
c81cea1c82fb2b4c049939d0b4344ebbc29387f1
4-
# Update formatting (add `.prettyphp.dist`, reinstate heredoc indentation)
53
34c5a7370e6e34bdbbfe7ac8efea832be3d723b2
6-
# Update formatting
74
9dacde70ddb437225c09231eda61e895f51000d8
8-
# Update formatting
95
2c5640274a5e1f161dbe504c7d26989251400d26
10-
# Update formatting
116
66d9a27e1c57650dc0166e42611b648c8af5e09d
12-
# Adopt depth-first sort order for imports
137
331128cdc554df67264373f63c04611c563e53be
14-
# Update formatting
158
4f46da1b16823b11c1dfeaeb8e434f1169777075
16-
# Update formatting
179
fce872ecb25b202192c47f2888f63bc67022d214
18-
# Update formatting
1910
78fa7d39618b7a885e6ecd557fc39559b91d1417
20-
# Update formatting
2111
f4a62e11068984999612806ec5525dca15d65d08
22-
# Add initial PHP CS Fixer config, add namespace prefixes to constants
2312
55ada029c6a7610323284ff3a46332ffee74d2ea
24-
# Update pretty-php and formatting
2513
969868ed14bebc451decf297c3adb8d75c9ecb9f
26-
# Update formatting
2714
23156859e88c8153b0b5f2ef6d5c57edd028e240
28-
# Update formatting
2915
448e4fb5a9db70358b573cfab15d2db3fc5961be
16+
358ef0878303383e256f0621f2c517db601995b6

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/.php-cs-fixer.* export-ignore
77
/.prettyphp export-ignore
88
/.vscode export-ignore
9+
/composer.lock export-ignore
910
/docs export-ignore
1011
/phpstan* export-ignore
1112
/phpstan-baseline-7.4.neon linguist-generated

.github/workflows/ci.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
restore-keys: composer-cache-${{ runner.os }}-
4242

4343
- name: Install PHP dependencies
44-
run: composer install --no-interaction --no-progress
44+
run: composer install --no-interaction --no-progress --no-dev
4545

4646
- name: Check generated files
4747
run: scripts/generate.php --check
@@ -112,8 +112,9 @@ jobs:
112112
- macos-latest
113113
php-version:
114114
- "8.3"
115-
- "8.2"
116115
include:
116+
- os: ubuntu-latest
117+
php-version: "8.2"
117118
- os: ubuntu-latest
118119
php-version: "8.1"
119120
- os: ubuntu-latest
@@ -122,13 +123,6 @@ jobs:
122123
php-version: "7.4"
123124
- os: windows-latest
124125
php-version: "7.4"
125-
exclude:
126-
# As of 2024-03-13, macos-latest + 8.3 is slooooow (5+ seconds per
127-
# process spawned?), but macos-latest + 8.2 runs normally
128-
- os: macos-latest
129-
php-version: "8.3"
130-
- os: windows-latest
131-
php-version: "8.2"
132126

133127
runs-on: ${{ matrix.os }}
134128

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
/composer.lock
1+
#/composer.lock
22
/vendor
33
composer.phar
44

55
.env
66
*.log
77
/var
8-
!/tests/.env
9-
/tests/.tmp
108

119
/build
1210
/docs/api

.prettyphp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,7 @@
1717
"enable": [
1818
"preserve-one-line",
1919
"strict-lists"
20-
]
20+
],
21+
"operatorsFirst": true,
22+
"heredocIndent": "none"
2123
}

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@
8686
"sort-packages": true,
8787
"allow-plugins": {
8888
"phpstan/extension-installer": true
89+
},
90+
"platform": {
91+
"php": "7.4.33"
8992
}
9093
},
9194
"extra": {

0 commit comments

Comments
 (0)