Skip to content

Commit a61d131

Browse files
authored
Merge pull request #39 from BeAPI/feature/true-default-cache-control.php
Update default-cache-control.php
2 parents 86fb518 + ffc0ab6 commit a61d131

21 files changed

Lines changed: 5151 additions & 589 deletions

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
operating-system: [ ubuntu-latest ]
11-
php-versions: [ '7.4' ]
11+
php-versions: [ '8.3' ]
1212
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1313
steps:
1414
- name: Checkout

composer.json

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,23 @@
2121
}
2222
},
2323
"require-dev": {
24-
"dealerdirect/phpcodesniffer-composer-installer": "v0.7.1",
25-
"overtrue/phplint": "^2.3",
26-
"php-parallel-lint/php-parallel-lint": "v1.2.0",
27-
"phpcompatibility/php-compatibility": "9.3.5",
28-
"phpro/grumphp-shim": "v1.3.1",
29-
"squizlabs/php_codesniffer": "3.5.8",
30-
"wp-coding-standards/wpcs": "2.3.0"
24+
"dealerdirect/phpcodesniffer-composer-installer": "^1",
25+
"overtrue/phplint": "^9",
26+
"php-parallel-lint/php-parallel-lint": "^1.4",
27+
"phpcompatibility/phpcompatibility-wp": "^2.1",
28+
"phpro/grumphp-shim": "^2",
29+
"roave/security-advisories": "dev-latest",
30+
"vimeo/psalm": "^6",
31+
"wp-coding-standards/wpcs": "^3.1"
3132
},
3233
"scripts": {
3334
"cs": "./vendor/bin/phpcs ./",
34-
"cb": "./vendor/bin/phpcbf ./"
35+
"cb": "./vendor/bin/phpcbf ./",
36+
"psalm": "./vendor/bin/psalm"
37+
},
38+
"scripts-descriptions": {
39+
"cs": "Run PHP CodeSniffer on codebase using our ruleset.",
40+
"cb": "Run PHP Code Beautifier and Fixer on codebase using our ruleset.",
41+
"psalm": "Run psalm on codebase using our ruleset."
3542
}
36-
}
43+
}

0 commit comments

Comments
 (0)