Private static composer registry powered by composer/satis.
📑 Table of Contents
- The build can be triggered manual (click the badge for more).
- The build runs on monday morning
- tests are running each morning (and on pull request)
└── satis.json # satis configuration
You will need a GITHUB_TOKEN.
You can either input the token interactive when running task satis:build
or create a file in .composer/auth.json
.
{
"github-oauth": {
"github.com": "$GITHUB_TOKENs" // add your token here
}
}
To build the static assets run:
task satis:build
To start a local server run:
task satis:serve
To enable pre-commit you can run:
task pre-commit:init
To lint/check all files with pre-commit:
task pre-commit:run