diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2017-10-31 11:54:49 +0000 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2017-10-31 11:54:49 +0000 |
commit | e829d5a08455e608ba5f054ffa65a2af0fe0393c (patch) | |
tree | 635b600e2fa432a21a70786d3c64fe847d57fec7 /doc | |
parent | a9446093b12a9dffef97541915e2b6872875ad3f (diff) | |
parent | c207122fd2b4439ff8303a1860c35de658d6bdfb (diff) | |
download | gitlab-ce-e829d5a08455e608ba5f054ffa65a2af0fe0393c.tar.gz |
Merge branch 'add-packagist-project-service' into 'master'
Add Packagist project service
See merge request gitlab-org/gitlab-ce!14493
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/services.md | 34 | ||||
-rw-r--r-- | doc/user/project/integrations/project_services.md | 1 |
2 files changed, 35 insertions, 0 deletions
diff --git a/doc/api/services.md b/doc/api/services.md index 6c8f196fd5c..e642ec964de 100644 --- a/doc/api/services.md +++ b/doc/api/services.md @@ -582,6 +582,40 @@ Delete Mattermost slash command service for a project. DELETE /projects/:id/services/mattermost-slash-commands ``` +## Packagist + +Update your project on Packagist, the main Composer repository, when commits or tags are pushed to GitLab. + +### Create/Edit Packagist service + +Set Packagist service for a project. + +``` +PUT /projects/:id/services/packagist +``` + +Parameters: + +- `username` (**required**) +- `token` (**required**) +- `server` (optional) + +### Delete Packagist service + +Delete Packagist service for a project. + +``` +DELETE /projects/:id/services/packagist +``` + +### Get Packagist service settings + +Get Packagist service settings for a project. + +``` +GET /projects/:id/services/packagist +``` + ## Pipeline-Emails Get emails for GitLab CI pipelines. diff --git a/doc/user/project/integrations/project_services.md b/doc/user/project/integrations/project_services.md index 51989ccaaea..a0405161495 100644 --- a/doc/user/project/integrations/project_services.md +++ b/doc/user/project/integrations/project_services.md @@ -43,6 +43,7 @@ Click on the service links to see further configuration instructions and details | [Mattermost slash commands](mattermost_slash_commands.md) | Mattermost chat and ChatOps slash commands | | [Mattermost Notifications](mattermost.md) | Receive event notifications in Mattermost | | [Microsoft teams](microsoft_teams.md) | Receive notifications for actions that happen on GitLab into a room on Microsoft Teams using Office 365 Connectors | +| Packagist | Update your project on Packagist, the main Composer repository | | Pipelines emails | Email the pipeline status to a list of recipients | | [Slack Notifications](slack.md) | Send GitLab events (e.g. issue created) to Slack as notifications | | [Slack slash commands](slack_slash_commands.md) | Use slash commands in Slack to control GitLab | |