{"id":47635893,"url":"https://github.com/dniccum/secret-stash-cli","last_synced_at":"2026-04-02T00:05:33.418Z","repository":{"id":333972148,"uuid":"1100987241","full_name":"dniccum/secret-stash-cli","owner":"dniccum","description":"A PHP-based Composer package to interact with the SecretStash environment variable service","archived":false,"fork":false,"pushed_at":"2026-03-24T02:50:15.000Z","size":332,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-24T11:14:14.804Z","etag":null,"topics":["composer","environment","laravel","secretstash","variable"],"latest_commit_sha":null,"homepage":"https://docs.secretstash.cloud/command-line-interface","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dniccum.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"dniccum"}},"created_at":"2025-11-21T03:13:20.000Z","updated_at":"2026-03-23T23:38:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dniccum/secret-stash-cli","commit_stats":null,"previous_names":["dniccum/vaultr-cli","dniccum/secret-stash-cli"],"tags_count":13,"template":false,"template_full_name":"dniccum/package-skeleton-laravel","purl":"pkg:github/dniccum/secret-stash-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dniccum%2Fsecret-stash-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dniccum%2Fsecret-stash-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dniccum%2Fsecret-stash-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dniccum%2Fsecret-stash-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dniccum","download_url":"https://codeload.github.com/dniccum/secret-stash-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dniccum%2Fsecret-stash-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293195,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["composer","environment","laravel","secretstash","variable"],"created_at":"2026-04-02T00:05:31.805Z","updated_at":"2026-04-02T00:05:33.389Z","avatar_url":"https://github.com/dniccum.png","language":"PHP","funding_links":["https://github.com/sponsors/dniccum"],"categories":[],"sub_categories":[],"readme":"[![Latest Version on Packagist](https://img.shields.io/packagist/v/dniccum/secret-stash-cli.svg?style=flat-square)](https://packagist.org/packages/dniccum/secret-stash-cli)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/dniccum/secret-stash-cli/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/dniccum/secret-stash-cli/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/dniccum/secret-stash-cli/fix-php-code-style-issues.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/dniccum/secret-stash-cli/actions?query=workflow%3A\"Fix+PHP+code+style+issues\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/dniccum/secret-stash-cli.svg?style=flat-square)](https://packagist.org/packages/dniccum/secret-stash-cli)\n\n![SecretStash](og-image.png)\n\n# SecretStash CLI\n\nA Laravel Composer package that provides Artisan commands for interacting with the [SecretStash](https://secretstash.cloud) REST API. Manage your environment variables directly from the command line with an intuitive, interactive interface.\n\n## Requirements\n\n- PHP 8.2 or higher\n- Laravel 11 or higher\n- A SecretStash API Key\n\n## Installation\n\nInstall the package via Composer:\n\n```bash\ncomposer require dniccum/secret-stash-cli\n```\n\nRun the installer to publish the configuration file and generate the encryption keys used to secure your variables:\n\n```bash\nphp artisan secret-stash:install\n```\n\n\u003e [!IMPORTANT]\n\u003e This package creates a `~/.secret-stash` directory on your machine (or the path specified by the `SECRET_STASH_KEY_DIR` environment variable). Ensure this folder is secure as it contains the keys required to decrypt your environment variables.\n\n## Configuration\n\nAdd the following environment variables to your application's `.env` file:\n\n```dotenv\nSECRET_STASH_API_TOKEN=your_token_here\nSECRET_STASH_APPLICATION_ID=your_application_id_here\n```\n\n- **API Key**: Create a token in SecretStash by navigating to your profile settings and accessing the \"Tokens\" tab.\n- **Application ID**: Create or select an application in SecretStash and copy its ID from the dashboard.\n\n\u003e [!NOTE]\n\u003e Both the API key and Application ID are required. The CLI will throw an error if either is missing.\n\n## Quick Example\n\nPull your environment's variables from SecretStash into your local `.env` file:\n\n```bash\nphp artisan secret-stash:variables pull\n```\n\nPush your local `.env` variables to SecretStash:\n\n```bash\nphp artisan secret-stash:variables push\n```\n\nFor the full list of available commands and options, visit the [SecretStash CLI documentation](https://docs.secretstash.cloud/command-line-interface/commands).\n\n## Testing\n\n```bash\ncomposer test\n```\n\nor:\n\n```bash\n./vendor/bin/pest\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Credits\n\n- [Doug Niccum](https://github.com/dniccum)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdniccum%2Fsecret-stash-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdniccum%2Fsecret-stash-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdniccum%2Fsecret-stash-cli/lists"}