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

Commit

Permalink
FE-190 Use SATIS to publish a composer branch
Browse files Browse the repository at this point in the history
  • Loading branch information
icatalina committed Oct 28, 2021
1 parent a913215 commit 2a9050b
Show file tree
Hide file tree
Showing 5 changed files with 1,605 additions and 9 deletions.
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

0 comments on commit 2a9050b

Please sign in to comment.