Skip to content

Commit

Permalink
feat(drupal): Start work to support D10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus authored Jan 14, 2024
1 parent 5eb0e98 commit e26ea63
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ This distribution is open source software and free for use by departments and ex
The following command is all you need to get started:

```sh
composer create-project drupalwxt/wxt-project:5.1.0 <site-name>
composer create-project drupalwxt/wxt-project:5.2.0 <site-name>
```

> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:5.1.x-dev`.
> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:5.2.x-dev`.
You can see a working example of a fully generated Composer Project Template over at:

Expand All @@ -38,7 +38,7 @@ You can see a working example of a fully generated Composer Project Template ove
Where the following is the command that was used for the initial generation:

```sh
composer create-project drupalwxt/wxt-project:5.1.0 site-wxt
composer create-project drupalwxt/wxt-project:5.2.0 site-wxt
```

> **Note**: Remember to keep the `composer.json` and `composer.lock` files that exist above `docroot` in source control as they are controlling your dependencies.
Expand Down
24 changes: 11 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,29 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"cweagans/composer-patches": "^1.6.0",
"drupal/core-composer-scaffold": "^10.0",
"drupalwxt/wxt": "5.1.x-dev"
"composer/installers": "^2.1",
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "^10.2",
"drupalwxt/wxt": "5.2.x-dev"
},
"require-dev": {
"drupal/core-dev": "^10.1",
"drupal/core-dev": "^10.2",
"drupal/drupal-extension": "5.0.0-alpha1",
"drush/drush": ">=12.1.0",
"drush/drush": "^12.4.3",
"oomphinc/composer-installers-extender": "^1.1 || ^2",
"squizlabs/php_codesniffer": "3.*",
"phpspec/prophecy-phpunit": "^2"
},
"config": {
"secure-http": false,
"prestissimo": {
"maxConnections": 10,
"minConnections": 5
},
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"cweagans/composer-patches": true,
"drupal/console-extend-plugin": true,
"oomphinc/composer-installers-extender": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
Expand Down

0 comments on commit e26ea63

Please sign in to comment.