Skip to content

Commit

Permalink
Merge tag '4.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolineus committed Sep 25, 2024
2 parents d8b8022 + f156ed5 commit 8af9bed
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 41 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/diagnostics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,14 @@ jobs:
fail-fast: false
matrix:
include:
- php: 7.4
phpcq_install: 'install'
- php: 8.0
- php: 8.2
phpcq_install: 'update'
- php: 8.1
- php: 8.3
phpcq_install: 'update'

steps:
- name: Pull source
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
Expand All @@ -42,7 +40,7 @@ jobs:
key: ${{ runner.os }}-build-${{ env.cache-name }}

- name: Cache vendor directory
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: vendor-${{ matrix.php }}
with:
Expand All @@ -52,7 +50,7 @@ jobs:
${{ runner.os }}-build-${{ env.cache-name }}-
- name: Cache phpcq directory
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: phpcq-${{ matrix.php }}
with:
Expand All @@ -71,7 +69,7 @@ jobs:
run: ./vendor/bin/phpcq run -v -o github-action -o default --threshold=info

- name: Upload build directory to artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ success() }} || ${{ failure() }}
with:
name: phpcq-builds-php-${{ matrix.php }}
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"symfony/http-foundation": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/translation-contracts": "^1.0 || ^2.0 || ^3.0",
"terminal42/dcawizard": "^3.0"
"terminal42/dcawizard": "^2.7 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.1",
Expand Down Expand Up @@ -74,8 +74,8 @@
},
"extra": {
"branch-alias": {
"dev-2.x": "2.1.x-dev",
"dev-master": "3.0.x-dev"
"dev-master": "4.0.x-dev",
"dev-develop": "4.1.x-dev"
},
"contao-manager-plugin": "Hofff\\Contao\\Content\\ContaoManager\\Plugin"
}
Expand Down
2 changes: 0 additions & 2 deletions src/Resources/contao/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@

$GLOBALS['BE_MOD']['content']['article']['stylesheet'][] = 'bundles/hofffcontaocontent/css/hofff_content.css';
$GLOBALS['BE_MOD']['design']['themes']['stylesheet'][] = 'bundles/hofffcontaocontent/css/hofff_content.css';
$GLOBALS['BE_MOD']['content']['article']['javascript'][] = 'bundles/hofffcontaocontent/js/hofff_content.js';
$GLOBALS['BE_MOD']['design']['themes']['javascript'][] = 'bundles/hofffcontaocontent/js/hofff_content.js';

$GLOBALS['BE_MOD']['design']['themes']['tables'][] = 'tl_hofff_content';
28 changes: 0 additions & 28 deletions src/Resources/public/js/hofff_content.js

This file was deleted.

0 comments on commit 8af9bed

Please sign in to comment.