Skip to content

Commit 5f05855

Browse files
committed
⬆️ PHP 8.0, Drupal core 9.3, Drush 11, PHPStan 1, various smaller dependencies
1 parent 716ca1f commit 5f05855

9 files changed

+1471
-1263
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ sql/*
66
vendor/*
77
.idea/
88
.idea-dist/
9+
10+
# From Drupal scaffold.
11+
.editorconfig
12+
.gitattributes

MAINTENANCE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Maintenance for dpi/drupal-local
2+
3+
After changes, use the following for building the commit message:
4+
5+
```shell
6+
./bin/composer-lock-diff --md --no-links
7+
```

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This setup assumes you have the following:
1515

1616
# Usage
1717

18+
0. `composer create-project dpi/drupal/local`
1819
1. `cp .env.dist .env` and add values.
1920
2. `composer install`
2021
3. Install Certificates, see _Local TLS_ section below.

composer.json

+12-10
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,24 @@
88
}
99
],
1010
"require": {
11-
"composer/installers": "^1.9",
11+
"composer/installers": "^2",
1212
"cweagans/composer-patches": "^1",
1313
"drupal/admin_toolbar": "^3.0",
1414
"drupal/cache_control_override": "1.x-dev",
15-
"drupal/core": "^9.2",
16-
"drupal/core-composer-scaffold": "^9.1",
17-
"drupal/core-project-message": "^9.1",
15+
"drupal/core": "~9.3.0",
16+
"drupal/core-composer-scaffold": "~9.3.0",
17+
"drupal/core-project-message": "~9.3.0",
1818
"drupal/redis": "1.x-dev",
19-
"drush/drush": "^10"
19+
"drush/drush": "^11@rc"
2020
},
2121
"require-dev": {
22-
"drupal/core-dev": "9.2.x-dev",
23-
"mglaman/phpstan-drupal": "^0.12.0@dev",
22+
"davidrjonas/composer-lock-diff": "^1.6",
23+
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
24+
"drupal/core-dev": "9.3.x-dev",
25+
"mglaman/phpstan-drupal": "^1",
2426
"phpspec/prophecy-phpunit": "^2",
25-
"phpstan/phpstan": "^0.12.0@dev",
26-
"phpstan/phpstan-deprecation-rules": "^0.12.0@dev"
27+
"phpstan/phpstan": "^1.0",
28+
"phpstan/phpstan-deprecation-rules": "^1.0"
2729
},
2830
"conflict": {
2931
"drupal/drupal": "*"
@@ -33,7 +35,7 @@
3335
"sort-packages": true,
3436
"bin-dir": "bin/",
3537
"platform": {
36-
"php": "7.4.999999"
38+
"php": "8.0.999999"
3739
},
3840
"preferred-install": {
3941
"drupal/core": "source",

0 commit comments

Comments
 (0)