Skip to content

Commit

Permalink
feat(wxt-project): Create new branch for 10.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed Aug 14, 2023
1 parent 4fb52f7 commit c60ceeb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 32 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:4.5.4 <site-name>
composer create-project drupalwxt/wxt-project:5.0.0-rc1 <site-name>
```

> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:4.5.x-dev`.
> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:5.0.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:4.5.4 site-wxt
composer create-project drupalwxt/wxt-project:5.0.0-rc1 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
44 changes: 15 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"name": "drupalwxt/site-wxt",
"description": "Project template for Drupal 9 sites built with the WxT distribution.",
"description": "Project template for Drupal 10 sites built with the WxT distribution.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"cweagans/composer-patches": "^1.6.0",
"drupal/core-composer-scaffold": "^9",
"drupalwxt/wxt": "4.5.4",
"drush/drush": ">=9.7",
"oomphinc/composer-installers-extender": "^1.1 || ^2"
"drupal/core-composer-scaffold": "^10.0",
"drupalwxt/wxt": "5.0.x-dev"
},
"require-dev": {
"drupal/core-dev": "^9",
"drupal/drupal-extension": "^4.1.0",
"squizlabs/php_codesniffer": "^3.3"
"drupal/core-dev": "^10.0",
"drupal/drupal-extension": "5.0.0-alpha1",
"drush/drush": ">=12.1.0",
"oomphinc/composer-installers-extender": "^1.1 || ^2",
"squizlabs/php_codesniffer": "3.*",
"phpspec/prophecy-phpunit": "^2"
},
"config": {
"secure-http": false,
Expand All @@ -24,11 +25,13 @@
"minConnections": 5
},
"allow-plugins": {
"drupal/core-composer-scaffold": true,
"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,
"oomphinc/composer-installers-extender": true
"phpstan/extension-installer": true
}
},
"repositories": [
Expand Down Expand Up @@ -67,7 +70,7 @@
"html/core": [
"type:drupal-core"
],
"html/libraries/{$name}" : [
"html/libraries/{$name}": [
"type:drupal-console-library",
"type:drupal-library",
"type:bower-asset",
Expand All @@ -92,24 +95,7 @@
"drupal/core": "-p2"
},
"patches": { },
"patches-ignore": {
"acquia/lightning": {
"drupal/core": {
"1356276 - Allow profiles to define a base/parent profile and load them in the correct order":
"https://www.drupal.org/files/issues/2020-03-24/1356276-531-9.0.x-9.patch",
"2914389 - Allow profiles to exclude dependencies of their parent":
"https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch"
}
},
"drupal/lightning_core": {
"drupal/core": {
"1356276 - Allow profiles to define a base/parent profile and load them in the correct order":
"https://www.drupal.org/files/issues/2020-03-24/1356276-531-9.0.x-9.patch",
"2914389 - Allow profiles to exclude dependencies of their parent":
"https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch"
}
}
}
"patches-ignore": { }
},
"autoload": {
"classmap": [
Expand Down

0 comments on commit c60ceeb

Please sign in to comment.