{"id":20954300,"url":"https://github.com/scalaenv/scalaenv","last_synced_at":"2025-09-11T16:10:35.412Z","repository":{"id":13555520,"uuid":"16247672","full_name":"scalaenv/scalaenv","owner":"scalaenv","description":"Groom your app's Scala environment with scalaenv like rbenv :). Support offered for all official versions, including dotty and scala3!","archived":false,"fork":false,"pushed_at":"2024-06-12T17:36:47.000Z","size":225,"stargazers_count":124,"open_issues_count":7,"forks_count":23,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-09-10T13:35:19.958Z","etag":null,"topics":["dotty","homebrew","homebrew-formula","scala","scala-environment","scala3"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/scalaenv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2014-01-26T05:59:31.000Z","updated_at":"2025-08-27T12:05:32.000Z","dependencies_parsed_at":"2024-06-12T23:46:17.874Z","dependency_job_id":"e2bf5525-1118-403e-86ca-0b0627157c5f","html_url":"https://github.com/scalaenv/scalaenv","commit_stats":{"total_commits":200,"total_committers":26,"mean_commits":"7.6923076923076925","dds":0.75,"last_synced_commit":"9fb76c96a668f5e3b9b3258834474dc813648f8d"},"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/scalaenv/scalaenv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalaenv%2Fscalaenv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalaenv%2Fscalaenv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalaenv%2Fscalaenv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalaenv%2Fscalaenv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scalaenv","download_url":"https://codeload.github.com/scalaenv/scalaenv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scalaenv%2Fscalaenv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274568801,"owners_count":25309283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["dotty","homebrew","homebrew-formula","scala","scala-environment","scala3"],"created_at":"2024-11-19T01:14:04.328Z","updated_at":"2025-09-11T16:10:35.383Z","avatar_url":"https://github.com/scalaenv.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"scalaenv\n====\n\n[![Build Status](https://travis-ci.org/scalaenv/scalaenv.svg?branch=master)](https://travis-ci.org/scalaenv/scalaenv)\n\n\u003c!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --\u003e\n[![All Contributors](https://img.shields.io/badge/all_contributors-22-orange.svg?style=flat-square)](#contributors-)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:END --\u003e\n\nGroom your app's Scala environment with scalaenv like [rbenv](https://github.com/sstephenson/rbenv) :)\nSupport offered for all official versions, including **dotty** and **scala3**.\n\nDo you need [**sbt**](http://www.scala-sbt.org) version management?\nPlease refer to [**sbtenv**](https://github.com/sbtenv/sbtenv) in the case of use **sbt**.\n\n### Installation\n\n#### Basic GitHub Checkout\n\n1. `git clone` scalaenv into `~/.scalaenv`.\n\n    ~~~ sh\n    $ git clone git://github.com/scalaenv/scalaenv.git ~/.scalaenv\n    ~~~\n\n2. Add `~/.scalaenv/bin` to your `$PATH` for access to the `scalaenv` command.\n\n    ~~~ sh\n    $ echo 'export PATH=\"${HOME}/.scalaenv/bin:${PATH}\"' \u003e\u003e ~/.zshrc\n    ~~~\n\n3. Add `scalaenv init` to your shell to enable shims and autocompletion.\n\n    ~~~ sh\n    $ echo 'eval \"$(scalaenv init -)\"' \u003e\u003e ~/.zshrc\n    ~~~\n\n    **Bash note**: Modify your `~/.bash_profile` file instead of `~/.zshrc`.\n\n4. Restart your shell so that PATH changes take effect. (Opening a new\n   terminal tab will usually do it.) Now check if scalaenv was set up:\n\n    ~~~ sh\n    $ type scalaenv\n    #=\u003e \"scalaenv is a shell function\"\n    ~~~\n\n    *Same as in previous step, use `~/.bash_profile` for Bash.*\n\n5. Install each version of scala.\n\n    ~~~ sh\n    $ scalaenv install scala-2.13.4\n    ~~~\n\n    If show all available version, please use the following command:\n\n    ~~~ sh\n    $ scalaenv install -l\n    All available versions:\n      scala-2.13.1\n      scala-2.13.2\n      scala-2.13.3\n      scala-2.13.4\n      ...\n    ~~~\n\n    If want to install manually, please download scala archive and extract into `~/.scalaenv/versions/`.\n\n    ~~~ sh\n    $ curl -LO http://www.scala-lang.org/files/archive/scala-2.13.4.tgz\n    $ tar xf scala-2.13.4.tgz -C ~/.scalaenv/versions/\n    ~~~\n\n#### Homebrew on macOS\n\nAs an alternative to installation via GitHub checkout, you can install scalaenv using the [Homebrew package manager](http://brew.sh) on macOS.\n\n~~~ sh\n$ brew update\n$ brew install scalaenv\n~~~\n\nOr, if you would like to install the latest development release:\n\n~~~sh\n$ brew install --HEAD scalaenv\n~~~\n\nTo upgrade HEAD package use `--fetch-HEAD` option:\n\n~~~sh\n$ brew upgrade --fetch-HEAD scalaenv\n~~~\n\n### Version History\n\n**0.1.15** (June, 5, 2024)\n  - Added missing versions\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.14...version/0.1.15)\n\n**0.1.14** (May, 29, 2021)\n  - Added version **2.12.14**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.13...version/0.1.14)\n\n**0.1.13** (May, 17, 2021)\n  - Added version **2.13.6**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.12...version/0.1.13)\n\n**0.1.12** (May, 13, 2021)\n  - Added version **3.0.0**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.11...version/0.1.12)\n\n**0.1.11** (Apr, 27, 2021)\n  - Added version **3.0.0-RC3**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.10...version/0.1.11)\n\n**0.1.10** (Apr, 1, 2021)\n  - Added version **3.0.0-RC2**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.9...version/0.1.10)\n\n**0.1.9** (Feb, 23, 2021)\n  - Added version **2.13.5** and **3.0.0-RC1**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.8...version/0.1.9)\n\n**0.1.8** (Feb, 12, 2021)\n  - Fix urls for 2.7.0 and 2.7.1\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.7...version/0.1.8)\n\n**0.1.7** (Feb, 2, 2021)\n  - Added version **2.10.0**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.6...version/0.1.7)\n\n**0.1.6** (Jan, 24, 2021)\n  - Added version **2.12.13**\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.5...version/0.1.6)\n\n**0.1.5** (Jan, 6, 2021)\n  - Added many new archives, including dotty and scala3\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.4...version/0.1.5)\n\n**0.1.4** (June, 18, 2019)\n  - Added new archive (**2.13.0**)\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.3...version/0.1.4)\n\n**0.1.3** (Mar, 26, 2019)\n  - Added new archives (**2.12.7**, **2.12.8**, **2.13.0-RC1**)\n  - Fix the bug in `scalaenv install -l`\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.2...version/0.1.3)  \n\n**0.1.2** (Sep, 10, 2018)\n  - fix `scalaenv install -l`\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.1...version/0.1.2)\n\n**0.1.1** (Sep 9, 2018)\n  - Fix #59\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.1.0...version/0.1.1)\n\n**0.1.0** (Nov 12, 2017)\n  - Added `scala-2.10.7` and `scala-2.11.12`\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.0.16...version/0.1.0)\n\n**0.0.16** (Oct 21, 2017)\n  - Added `scala-2.12.4`\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.0.15...version/0.0.16)\n\n**0.0.15** (Aug 17, 2017)\n  - Implemented `scalaenv uninstall`\n  - Enhanced `scalaenv install`\n    - Added usage for `scalaenv install`\n    - Added completions for  `scalaenv install`\n    - etc...\n  - Added new scala archives (**2.12.3** and **2.13.0-M2**)\n  - [diff](https://github.com/scalaenv/scalaenv/compare/version/0.0.14...version/0.0.15)\n\n**0.0.14** (Jul 28, 2017)\n  * Added **dotty-0.2.0-RC1**\n  * Supported for fish shell :tada:\n    * https://github.com/scalaenv/scalaenv/pull/44\n\n**0.0.13** (Jun 25, 2017)\n  * dotty support :tada:\n    ~~~sh\n    scalaenv install dotty-0.1.2-RC1\n    scalaenv global dotty-0.1.2-RC1-bin-SNAPSHOT\n    scalaenv rehash\n    dotr\n    ~~~\n\n**0.0.12** (Apr 24, 2017)\n  * Added **Scala 2.11.9** - **Scala 2.11.11** , **Scala 2.12.2** - **Scala 2.13.0-M1**.\n    Thanks to @Kaioru..\n\n**0.0.11** (Feb 03, 2017)\n  * Added **Scala 2.12.1**.\n    Thanks to @3tty0n.\n\n**0.0.10** (Dec 05, 2016)\n\n  * Added **Scala 2.11.8**, **Scala 2.12.0-M4** - **2.12.0**.\n    Thanks to @odd, @3tty0n\n\n**0.0.9** (Jan 06, 2016)\n\n  * Added **Scala 2.12.0-M3** and more Scala 2.10 versions.\n    Thanks to @joprice\n\n**0.0.8** (Aug 25, 2015)\n\n  * Added **Scala 2.11.5** - **Scala 2.11.7**, **Scala 2.12.0-M1** - **2.12.0-M2**\n    Many thanks to @alexanderscott, @tdstein, @rwinzhang\n\n**0.0.7** (Nov 19, 2014)\n\n  * Added recipes for **Scala 2.11.1** - **Scala 2.11.4** by @zaneli\n  * Fixed a bug when run `versions` subcommand.\n\n**0.0.6** (Apr 18, 2014)\n\n  * Added recipes for **Scala 2.11.0** to *scala-install* built-in plugin.\n\n**0.0.5** (Apr 16, 2014)\n\n  * Added recipes for **Scala 2.10.4** and **Scala 2.11.0-RCx** to *scala-install* built-in plugin.\n  * Added recipes for *old versions* to *scala-install* built-in plugin.\n\n**0.0.4** (Mar 25, 2014)\n\n  * Improved installation instruction by *scala-install* built-in plugin.\n\n**0.0.3** (Mar 14, 2014)\n\n  * Added [Travis CI](https://travis-ci.org) status badge on README.\n  * Fixed a bug when run `rehash` subcommand.\n  * Fixed version string.\n\n**0.0.2** (Mar 04, 2014)\n\n  * Added completions for `Z shell` and `Bash`.\n\n**0.0.1** (Jan 28, 2014)\n\n  * Initial public release.\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://mazgi.github.io/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/194222?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMatsuki, Hidenori\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#maintenance-mazgi\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=mazgi\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://3tty0n.github.io\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/8289812?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eYusuke Izawa\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#maintenance-3tty0n\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=3tty0n\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.zaneli.com/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/379820?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eShunsuke Otani\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#maintenance-zaneli\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=zaneli\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://mihaibogdaneugen.github.io/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/7483233?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eBogdan-Eugen Mihai\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#maintenance-MihaiBogdanEugen\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=MihaiBogdanEugen\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e    \n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://ehrns.com\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/2118299?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlex Ehrnschwender\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=alexanderscott\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://taylorsteinberg.com\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/6015574?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTaylor Steinberg\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=tdstein\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.linkedin.com/in/rwinzhang/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/1652090?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eErwin Zhang\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=rwinzhang\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/joprice\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/2175555?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJoseph Price\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=joprice\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e  \n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://dataich.github.io/\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/15887?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTaichiro Yoshida\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=dataich\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/odd\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/49301?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOdd Möller\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=odd\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://ledin.me\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/1078685?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMichael Ledin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=mxl\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://blaisorblade.github.io/\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/289960?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePaolo G. Giarrusso\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=Blaisorblade\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/Kaioru\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/6829787?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKeith\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=Kaioru\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://andersonvom.github.io\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/69922?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAnderson Mesquita\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=andersonvom\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://u.chimata.org/\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/80503?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eɯ̹t͡ɕʲi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=c18t\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/tmshn\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/3760893?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eShinichi TAMURA\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=tmshn\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://twitter.com/matsu_chara\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/1635885?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ematsu-chara\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=matsu-chara\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://pthariensflame.wordpress.com\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/1847577?v=4\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlexander Ronald Altman\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/scalaenv/scalaenv/commits?author=pthariensflame\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-enable --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscalaenv%2Fscalaenv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscalaenv%2Fscalaenv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscalaenv%2Fscalaenv/lists"}