Skip to content

Commit ff923f6

Browse files
author
Greg Bowler
authored
Document HTTP basic auth
1 parent 8168ac9 commit ff923f6

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,42 @@ jobs:
159159

160160
There is an example repository available for reference at https://github.com/php-actions/example-composer that uses a private dependency. Check it out for a live working project.
161161

162+
### HTTP basic authentication
163+
164+
It's recommended to use SSH keys for authentication, but sometimes HTTP basic authentication is the only tool available at the time. In order to use this authentication mechanism as securely as possible, please follow these steps:
165+
166+
1) Create a [personal access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) for the Github account you wish to authenticate with.
167+
168+
2) Add the following JSON to a new Github Secret called `COMPOSER_AUTH_JSON`:
169+
170+
```json
171+
{
172+
"http-basic": {
173+
"github.com": {
174+
"username": "<YOUR_GITHUB_USERNAME>",
175+
"password": "<YOUR_PERSONAL_ACCESS_TOKEN"
176+
}
177+
}
178+
}
179+
```
180+
181+
3) Pass this secret to auth.json as a separate action step within your Yaml config:
182+
183+
```yaml
184+
jobs:
185+
build:
186+
187+
...
188+
189+
- name: Add HTTP basic auth credentials
190+
run: echo '${{ secrets.COMPOSER_AUTH_JSON }}' > $GITHUB_WORKSPACE/auth.json
191+
192+
- name: Install dependencies
193+
uses: php-actions/composer@v5
194+
```
195+
196+
4) Now, any connections Composer makes to Github.com will use your HTTP basic auth credentials, which is essentially the same as being logged in as you, so your private repositories will now be available to Composer.
197+
162198
***
163199

164200
If you found this repository helpful, please consider [sponsoring the developer][sponsor].
@@ -168,4 +204,4 @@ If you found this repository helpful, please consider [sponsoring the developer]
168204
[php-actions-behat]: https://github.com/marketplace/actions/behat-php-actions
169205
[deploy-keys]: https://docs.github.com/en/developers/overview/managing-deploy-keys
170206
[secrets]: https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
171-
[sponsor]: https://github.com/sponsors/g105b
207+
[sponsor]: https://github.com/sponsors/g105b

0 commit comments

Comments
 (0)