php - What's the proper way to add composer credentials for use in CircleCI? -


i've got project has private repositories installed composer. use auth.json include these credentials:

{   "http-basic": {     "repo.magento.com": {       "username": "1435d ... (some hash) ... a6d45b",       "password": "b4bab ... (some hash) ... 2c1a85"     }   },   "github-oauth": {     "github.com": "3b5dc ... (some hash) ... ae6dcb"   } } 

i use circleci test repository automatically. needless say, don't want auth.json in repository, need credentials repositories.

i know can set environment variables in circleci tackle this, can't seem find proper documentation on variables must use above credentials.

can me this?


Comments

Popular posts from this blog

4x4 Matrix in Python -

python - PyInstaller UAC not working in onefile mode -

javascript - Building and updating array objects -