You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+37-1
Original file line number
Diff line number
Diff line change
@@ -159,6 +159,42 @@ jobs:
159
159
160
160
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.
161
161
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:
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
+
162
198
***
163
199
164
200
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]
0 commit comments