Skip to content

Commit 78fd8c9

Browse files
authored
Merge pull request #67 from itk-dev/develop
Release 2022-05-19
2 parents 98030c9 + 7505515 commit 78fd8c9

File tree

332 files changed

+7455
-6899
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

332 files changed

+7455
-6899
lines changed

README.md

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -78,20 +78,6 @@ read on the url reported by
7878
echo "http://$(docker-compose port mailhog 8025)"
7979
```
8080

81-
#### Using `symfony` binary
82-
83-
```sh
84-
docker-compose up --detach
85-
symfony composer install
86-
symfony php vendor/bin/drush --yes site:install os2loop --existing-config
87-
# Start the server
88-
symfony local:server:start --port=8000 --daemon
89-
# Get the site url
90-
echo "http://127.0.0.1:8000"
91-
# Get admin sign in url
92-
symfony php vendor/bin/drush --uri=https://127.0.0.1:8000 user:login
93-
```
94-
9581
### Fixtures
9682

9783
We have fixtures for all content types.
@@ -100,15 +86,15 @@ To load all content type fixtures, run:
10086

10187
```sh
10288
# Find and enable all fixtures modules
103-
vendor/bin/drush --yes pm:enable $(find web/profiles/custom/os2loop/modules/ -type f -name 'os2loop_*_fixtures.info.yml' -exec basename -s .info.yml {} \;)
89+
docker-compose exec phpfpm vendor/bin/drush --yes pm:enable $(find web/profiles/custom/os2loop/modules/ -type f -name 'os2loop_*_fixtures.info.yml' -exec basename -s .info.yml {} \;)
10490
# Disable "Entity Reference Integrity Enforce" module to be able to delete (purge) content before loading fixtures.
105-
vendor/bin/drush --yes pm:uninstall entity_reference_integrity_enforce
91+
docker-compose exec phpfpm vendor/bin/drush --yes pm:uninstall entity_reference_integrity_enforce
10692
# Load the fixtures
107-
vendor/bin/drush --yes content-fixtures:load
93+
docker-compose exec phpfpm vendor/bin/drush --yes content-fixtures:load
10894
# Uninstall all fixtures modules
109-
vendor/bin/drush --yes pm:uninstall content_fixtures
95+
docker-compose exec phpfpm vendor/bin/drush --yes pm:uninstall content_fixtures
11096
# Enable "Entity Reference Integrity Enforce" module
111-
vendor/bin/drush --yes pm:enable entity_reference_integrity_enforce
97+
docker-compose exec phpfpm vendor/bin/drush --yes pm:enable entity_reference_integrity_enforce
11298
```
11399

114100
## Updates

composer.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"drupal/snowball_stemmer": "^2.0",
7676
"drupal/theme_switcher": "dev-8.x-1.x",
7777
"drupal/toc_api": "^1.1",
78+
"drupal/toc_filter": "^2.0",
7879
"drupal/token": "^1.9",
7980
"drupal/token_filter": "^1.2",
8081
"drupal/twig_tweak": "^3.0",
@@ -121,7 +122,15 @@
121122
"minimum-stability": "dev",
122123
"prefer-stable": true,
123124
"config": {
124-
"sort-packages": true
125+
"sort-packages": true,
126+
"allow-plugins": {
127+
"dealerdirect/phpcodesniffer-composer-installer": true,
128+
"composer/installers": true,
129+
"cweagans/composer-patches": true,
130+
"drupal/console-extend-plugin": true,
131+
"drupal/core-composer-scaffold": true,
132+
"drupal/core-project-message": true
133+
}
125134
},
126135
"extra": {
127136
"drupal-scaffold": {

0 commit comments

Comments
 (0)