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

FE-190 Use SATIS to publish a composer branch #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: 2.1

orbs:
ci: bigcommerce/internal@volatile
php: bigcommerce/internal-php@volatile

jobs:
build:
parameters:
php-version:
type: string
docker:
- image: cimg/php:<<parameters.php-version>>
steps:
- ci/pre-setup
- php/composer-install
- run: ./vendor/bin/phpunit --colors test

workflows:
version: 2
full:
jobs:
- build:
matrix:
parameters:
php-version: ["7.0"]

- php/composer-github:
filters:
tags:
only:
- /.*/
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.phpunit.result.cache
vendor
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@
}
],
"require": {
"php": ">=5.3"
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
"phpunit/phpunit": "5.*"
},
"autoload": {
"files": ["lib/Analytics.php"]
"files": [
"lib/Analytics.php"
]
}
}
Loading