PHP composer/satis extended with the ability to generate SATIS configuration according to CVS projects containing a composer.json
file.
It also provides a way to mirror PHP dependencies to allow offline builds.
- PHP >=8.2
- GitLab API v4 / GitHub API / Gogs API / Gitea API
git clone https://github.com/mborne/satis-gitlab
cd satis-gitlab
# PHP 8.1
composer install
# PHP 7.4 (downgrading versions refered in composer.lock is required)
composer update
# add --archive if you want to mirror tar archives
bin/satis-gitlab gitlab-to-config \
--homepage https://satis.example.org \
--output satis.json \
https://gitlab.example.org [GitlabToken]
bin/satis-gitlab build satis.json web
Use you're favorite tool to expose web
directory as https://satis.example.org
.
satis.json should not be exposed, it contains the GitlabToken by default (see --no-token
)
SATIS web page suggests to add the following configuration to composer.json in all your projects :
{
"repositories": [{
"type": "composer",
"url": "https://satis.example.org"
}]
}
Alternatively, composer can be configured globally to use SATIS :
composer config --global repo.satis.example.org composer https://satis.example.org
(it makes a weaker link between your projects and your SATIS instance(s))
If you rely on gitlab.com, you will probably need to find projects according to groups and users :
bin/satis-gitlab gitlab-to-config https://gitlab.com $SATIS_GITLAB_TOKEN -vv --users=mborne --orgs=drutopia
github supports allows to perform :
bin/satis-gitlab gitlab-to-config https://github.com $SATIS_GITHUB_TOKEN --orgs=symfony --users=mborne
bin/satis-gitlab build --skip-errors satis.json web
(Note that SATIS_GITHUB_TOKEN is required to avoid rate request limitation)
Note that --archive
option allows to download tar
archives for each tag and each branch in web/dist
for :
- The gitlab projects
- The dependencies of the gitlab projects
Note that GitlabToken
is optional so that you can generate a SATIS instance only for you're public repositories.
Note that gitlab-to-config
saves the GitlabToken
to satis.json
configuration file (so far you expose only the web
directory, it is not a problem).
You may disable this option using --no-token
option and use the following composer command to configure $COMPOSER_HOME/auth.json
file :
composer config -g gitlab-token.satis.example.org GitlabToken
Some command line options provide a basic customization options. You may also use --template my-satis-template.json
to replace the default template :
See docs/docker.md.
export SATIS_GITLAB_TOKEN=AnyGitlabToken
export SATIS_GITHUB_TOKEN=AnyGithubToken
make test
Note that an HTML coverage report is generated to output/coverage/index.html
MIT.