Skip to content

Commit

Permalink
11.7.0
Browse files Browse the repository at this point in the history
11.7.0
  • Loading branch information
joegl authored Feb 6, 2025
2 parents 16621c4 + 08f74cf commit 45e99a2
Show file tree
Hide file tree
Showing 40 changed files with 3,436 additions and 1,314 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Drupal PHP CodeSniffer
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run_phpcs:
runs-on: ubuntu-latest
container:
image: pookmish/drupal8ci:php8.3
steps:
- uses: actions/checkout@v4
- name: Restore Cache
uses: actions/cache@v4
with:
path: |
vendor
docroot/core
docroot/libraries
docroot/modules/contrib
key: 1.0-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }}
restore-keys: |
1.0-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }}
1.0-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-
1.0-${{ hashFiles('blt/blt.yml') }}-
- name: Run PHPCS
run: |
composer install -n &&
vendor/bin/phpcs --standard=./phpcs.xml
2 changes: 1 addition & 1 deletion .github/workflows/sites-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
restore-keys: |
1.0-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }}
1.0-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-
1.0-
1.0-${{ hashFiles('blt/blt.yml') }}-
- run: git config --system --add safe.directory '*'
- name: Install Dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions blt/blt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ multisites:
- biologyvirtualshowcase
- bsurp
- buddhiststudies
- cas
- ccsre
- ceas
- cesta
Expand Down
19 changes: 6 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@
"drupal/views_ical": "^1.0@alpha",
"drupal/views_infinite_scroll": "^2.0",
"drupal/views_taxonomy_term_name_depth": "^7.0",
"drupal/webform": "^6.2@beta",
"drupal/xmlsitemap": "^1.0",
"drush/drush": "^12",
"harvesthq/chosen": "^1.8",
"kenwheeler/slick": "^1.8",
"leongersen/nouislider": "15.5.1",
"mnsami/composer-custom-directory-installer": "^2.0",
"onlyextart/colorbox": "dev-master#e58476becbc89dc671093d1bcd9f99b2167fa8f7",
"sainsburys/guzzle-oauth2-plugin": "^3.0",
"su-sws/ckeditor5_plugins": "^1.0",
Expand All @@ -194,14 +194,12 @@
"su-sws/stanford_samlauth": "^1.0"
},
"require-dev": {
"drupal/core-dev": "~10.3.0",
"drupal/upgrade_status": "^4.0",
"phpspec/prophecy-phpunit": "^2.0",
"su-sws/blt-sws": "dev-main",
"su-sws/drupal-dev": "^10"
},
"replace": {
"drupal/coder": "*"
},
"conflict": {
"drupal/drupal": "*",
"drupal/gin": ">3.0.0-rc13"
Expand Down Expand Up @@ -319,7 +317,9 @@
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library"
"type:drupal-library",
"enyo/dropzone",
"harvesthq/chosen"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
Expand Down Expand Up @@ -351,14 +351,7 @@
"type:stanford-profile"
],
"docroot/libraries/{$name}/": [
"type:component",
"ckeditor/ckeditor",
"enyo/dropzone",
"components/jquery",
"harvesthq/chosen"
],
"vendor/{$vendor}/{$name}/": [
"type:library"
"type:component"
]
}
},
Expand Down
Loading

0 comments on commit 45e99a2

Please sign in to comment.