Skip to content
This repository has been archived by the owner on Nov 16, 2021. It is now read-only.

Commit

Permalink
Update to Lightning 2.1.8 (#63)
Browse files Browse the repository at this point in the history
* Update Lightning to 2.1.8
* Migrate to Simple OAuth 3.x and Consumers module
* Offload API testing to Lightning API
  • Loading branch information
balsama committed Sep 20, 2017
1 parent ae8522f commit 0b9902d
Show file tree
Hide file tree
Showing 12 changed files with 1,076 additions and 723 deletions.
8 changes: 6 additions & 2 deletions acquia-pipelines.yml
Expand Up @@ -2,9 +2,11 @@
# Headless Lightning and runs its functional tests. Upon success, an artifact is
# deployed to the headlessnightly (f9b2254c-024f-4a28-bc14-fc1c06a495a6) sub on
# Acquia cloud.
version: 1.0.0
version: 1.1.0
services:
- mysql
- php:
version: 7.1

events:
build:
Expand Down Expand Up @@ -34,6 +36,8 @@ events:
- cleanup:
type: script
script:
# Setup settings file and codebase with minimum required for cloud.
- cd $SOURCE_DIR
# Remove drush so our version doesn't interfere with cloud commands.
- composer remove drush/drush --dev
# Setup settings file and codebase with minimum required for cloud.
- phing cloud-settings
24 changes: 18 additions & 6 deletions composer.json
Expand Up @@ -12,7 +12,7 @@
"mikey179/vfsStream": "~1.2",
"phpunit/phpunit": "~4.8",
"symfony/css-selector": "~2.8",
"drush/drush": "8.1.11",
"drush/drush": "^9.0",
"drupal/drupal-extension": "~3.3.0",
"behat/behat": "^3.3",
"drupal/coder": "~8.2.0",
Expand All @@ -27,14 +27,18 @@
"require": {
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "^1.6.0",
"acquia/lightning": "~2.1.7"
"acquia/lightning": "~2.1.8"
},
"repositories": [
{
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
],
},
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
Expand Down Expand Up @@ -67,9 +71,17 @@
],
"drush/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/libraries/{$name}": [
"type:bower-asset",
"type:npm-asset"
]
},
"enable-patching": true,
"patches": {}
"patches": [],
"installer-types": [
"bower-asset",
"npm-asset"
]
}
}

0 comments on commit 0b9902d

Please sign in to comment.