Skip to content
Open
Show file tree
Hide file tree
Changes from 6 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
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
resource_class: large
steps:
- checkout
- run: composer install -n
- run:
name: Configure globals
command: ./.circleci/set-up-globals.sh
Expand All @@ -81,6 +82,7 @@ jobs:
resource_class: large
steps:
- checkout
- run: composer install -n
- run:
name: Configure globals
command: ./.circleci/set-up-globals.sh
Expand Down Expand Up @@ -118,6 +120,7 @@ jobs:
resource_class: large
steps:
- checkout
- run: composer install -n
- run:
name: dependencies
command: ./.circleci/set-up-globals.sh
Expand All @@ -139,6 +142,7 @@ jobs:
<<: *defaults
steps:
- checkout
- run: composer install -n
- run:
name: Configure globals
command: ./.circleci/set-up-globals.sh
Expand Down Expand Up @@ -166,6 +170,7 @@ jobs:
resource_class: large
steps:
- checkout
- run: composer install -n
- run:
name: Configure globals
command: ./.circleci/set-up-globals.sh
Expand Down Expand Up @@ -203,6 +208,7 @@ jobs:
resource_class: large
steps:
- checkout
- run: composer install -n
- run:
name: dependencies
command: ./.circleci/set-up-globals.sh
Expand All @@ -227,6 +233,7 @@ jobs:
<<: *defaults
steps:
- checkout
- run: composer install -n
- run:
name: Configure globals
command: ./.circleci/set-up-globals.sh
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,17 @@ The `build:project:info` command displays information about a site created by th

There are no additional command options for this command.

### build:project:version

The `build:project:version` command displays information about a code base to identify the framework used, version, and the upstream that should be used.

#### Command Options

There are no additional command options for this command.

### build:secrets:delete

The `build:secrets:delete` command deletes a secret from Pantheon. These secrets are commonly used for storing informatiion needed by CI integrations, such as [Quicksilver Pushback](https://www.github.com/pantheon-systems/quicksilver-pushback).
The `build:secrets:delete` command deletes a secret from Pantheon. These secrets are commonly used for storing information needed by CI integrations, such as [Quicksilver Pushback](https://www.github.com/pantheon-systems/quicksilver-pushback).

#### Command Options

Expand Down
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@
"phpunit/phpunit": "^4.8.36",
"doctrine/instantiator": "1.0.5",
"phpdocumentor/reflection-docblock": "3.2.2",
"symfony/polyfill-ctype": "v1.11.0",
"symfony/yaml": "v3.4.26",
"symfony/polyfill-ctype": "v1.10.0",
"symfony/yaml": "v3.4.22",
"webmozart/assert": "1.4.0",
"phpspec/prophecy": "1.8.0"
},
"scripts": {
"unit-test": "./vendor/bin/phpunit --bootstrap ./vendor/autoload.php tests/*"
},
"require": {
"consolidation/version-tool": "^0.1.8"
}
}
Loading