Skip to content

Commit c60ceeb

Browse files
committed
feat(wxt-project): Create new branch for 10.0.x
1 parent 4fb52f7 commit c60ceeb

File tree

2 files changed

+18
-32
lines changed

2 files changed

+18
-32
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ This distribution is open source software and free for use by departments and ex
2626
The following command is all you need to get started:
2727

2828
```sh
29-
composer create-project drupalwxt/wxt-project:4.5.4 <site-name>
29+
composer create-project drupalwxt/wxt-project:5.0.0-rc1 <site-name>
3030
```
3131

32-
> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:4.5.x-dev`.
32+
> **Note**: For development you may also specify a branch using `drupalwxt/wxt-project:5.0.x-dev`.
3333
3434
You can see a working example of a fully generated Composer Project Template over at:
3535

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

4040
```sh
41-
composer create-project drupalwxt/wxt-project:4.5.4 site-wxt
41+
composer create-project drupalwxt/wxt-project:5.0.0-rc1 site-wxt
4242
```
4343

4444
> **Note**: Remember to keep the `composer.json` and `composer.lock` files that exist above `docroot` in source control as they are controlling your dependencies.

composer.json

Lines changed: 15 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
{
22
"name": "drupalwxt/site-wxt",
3-
"description": "Project template for Drupal 9 sites built with the WxT distribution.",
3+
"description": "Project template for Drupal 10 sites built with the WxT distribution.",
44
"type": "project",
55
"license": "GPL-2.0+",
66
"minimum-stability": "dev",
77
"prefer-stable": true,
88
"require": {
99
"cweagans/composer-patches": "^1.6.0",
10-
"drupal/core-composer-scaffold": "^9",
11-
"drupalwxt/wxt": "4.5.4",
12-
"drush/drush": ">=9.7",
13-
"oomphinc/composer-installers-extender": "^1.1 || ^2"
10+
"drupal/core-composer-scaffold": "^10.0",
11+
"drupalwxt/wxt": "5.0.x-dev"
1412
},
1513
"require-dev": {
16-
"drupal/core-dev": "^9",
17-
"drupal/drupal-extension": "^4.1.0",
18-
"squizlabs/php_codesniffer": "^3.3"
14+
"drupal/core-dev": "^10.0",
15+
"drupal/drupal-extension": "5.0.0-alpha1",
16+
"drush/drush": ">=12.1.0",
17+
"oomphinc/composer-installers-extender": "^1.1 || ^2",
18+
"squizlabs/php_codesniffer": "3.*",
19+
"phpspec/prophecy-phpunit": "^2"
1920
},
2021
"config": {
2122
"secure-http": false,
@@ -24,11 +25,13 @@
2425
"minConnections": 5
2526
},
2627
"allow-plugins": {
27-
"drupal/core-composer-scaffold": true,
2828
"composer/installers": true,
29+
"drupal/core-composer-scaffold": true,
2930
"cweagans/composer-patches": true,
31+
"drupal/console-extend-plugin": true,
32+
"oomphinc/composer-installers-extender": true,
3033
"dealerdirect/phpcodesniffer-composer-installer": true,
31-
"oomphinc/composer-installers-extender": true
34+
"phpstan/extension-installer": true
3235
}
3336
},
3437
"repositories": [
@@ -67,7 +70,7 @@
6770
"html/core": [
6871
"type:drupal-core"
6972
],
70-
"html/libraries/{$name}" : [
73+
"html/libraries/{$name}": [
7174
"type:drupal-console-library",
7275
"type:drupal-library",
7376
"type:bower-asset",
@@ -92,24 +95,7 @@
9295
"drupal/core": "-p2"
9396
},
9497
"patches": { },
95-
"patches-ignore": {
96-
"acquia/lightning": {
97-
"drupal/core": {
98-
"1356276 - Allow profiles to define a base/parent profile and load them in the correct order":
99-
"https://www.drupal.org/files/issues/2020-03-24/1356276-531-9.0.x-9.patch",
100-
"2914389 - Allow profiles to exclude dependencies of their parent":
101-
"https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch"
102-
}
103-
},
104-
"drupal/lightning_core": {
105-
"drupal/core": {
106-
"1356276 - Allow profiles to define a base/parent profile and load them in the correct order":
107-
"https://www.drupal.org/files/issues/2020-03-24/1356276-531-9.0.x-9.patch",
108-
"2914389 - Allow profiles to exclude dependencies of their parent":
109-
"https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch"
110-
}
111-
}
112-
}
98+
"patches-ignore": { }
11399
},
114100
"autoload": {
115101
"classmap": [

0 commit comments

Comments
 (0)