Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
/docker-compose.yml export-ignore
/phpcs.xml export-ignore
/phpunit.xml export-ignore
/.github
/docker
/tests
/.github export-ignore
/docker export-ignore
/tests export-ignore
27 changes: 0 additions & 27 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,33 +30,6 @@ jobs:
- name: Ensure that dependencies can be installed
run: composer install --no-ansi --dry-run

coding-guidelines:
name: Coding Guidelines

needs:
- dependency-validation

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
extensions: mbstring
coverage: none
tools: none

- name: Install dependencies with Composer
run: composer install --no-ansi

# phpcs is not php8.4 compatible for now.
# - name: Run PHP-CS-Fixer
# run: vendor/bin/phpcs src

static-analysis:
name: Static analysis

Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^3.7"
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
Expand Down
Loading