Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions bear.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ core: 8.x
dependencies:
# Core extensions.
- node
- big_pipe
- block
- breakpoint
- ckeditor
Expand Down Expand Up @@ -36,9 +37,9 @@ dependencies:
# Contrib extensions.
- admin_toolbar
- admin_toolbar_tools
- big_pipe
- ckeditor_media_embed
- coffee
- components
- ctools
- diff
- ds
Expand All @@ -47,14 +48,18 @@ dependencies:
- field_group
- field_help_helper
- layout_plugin
- menu_block
- menu_link_config
- paragraphs
- password_policy
- password_policy_characters
- password_policy_history
- password_policy_length
- pathauto
- redirect
- simple_sitemap
- token
- components
themes:
- bear_skin
- bartik
- bear_skin
- seven
32 changes: 32 additions & 0 deletions config/install/password_policy.password_policy.general.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
id: general
label: General
password_reset: 180
langcode: en
policy_constraints:
-
id: password_policy_character_constraint
character_count: 1
character_type: uppercase
-
id: password_policy_character_constraint
character_count: 1
character_type: lowercase
-
id: password_policy_character_constraint
character_count: 1
character_type: numeric
-
id: password_policy_character_constraint
character_count: 1
character_type: special
-
id: password_policy_history_constraint
history_repeats: '0'
-
id: password_length
character_length: 8
character_operation: minimum
roles:
authenticated: authenticated
editor: editor
administrator: administrator
12 changes: 10 additions & 2 deletions drupal-org.make
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ projects[ckeditor_media_embed][version] = "1.0"

projects[coffee][version] = "1.0-beta2"

projects[components][version] = "1.0"

projects[ctools][version] = "3.0-alpha27"

projects[devel][version] = "1.0-alpha1"
Expand All @@ -34,6 +36,10 @@ projects[field_help_helper][version] = "1.0"

projects[layout_plugin][version] = "1.0-alpha23"

projects[login_security][version] = "1.2"

projects[menu_block][version] = 1.4

projects[menu_link_config][download][type] = git
projects[menu_link_config][download][url] = http://git.drupal.org/project/menu_link_config.git
projects[menu_link_config][download][branch] = 8.x-1.x
Expand All @@ -43,16 +49,18 @@ projects[menu_link_config][patch][] = https://www.drupal.org/files/issues/268791

projects[paragraphs][version] = "1.0"

projects[password_policy][version] = "3.0-alpha2"

projects[pathauto][version] = "1.0-beta1"

projects[redirect][version] = "1.0-alpha1"

projects[seckit][version] = "1.0-alpha2"

projects[simple_sitemap][version] = "2.7"

projects[token][version] = "1.0-beta2"

projects[components][version] = "1.0"

; Libraries.
libraries[ckeditor][download][type] = file
libraries[ckeditor][download][url] = "https://github.com/ckeditor/ckeditor-dev/archive/release/4.5.x.zip"
Expand Down