1.0.0
1.0.0 Release
- Default branch is now
main - New config loading adapters: JSON, YAML, Dotenv
- Breaking change requiring adapter when loading a config
Before:
use Utopia\Config\Config;
Config::load('codes', __DIR__.'/codes.php');After:
use Utopia\Config\Config;
use Utopia\Config\Adapters\PHP;
Config::load('codes', __DIR__.'/codes.php', new PHP());What's Changed
- added Contributing.md by @Gautam1302 in #5
- doc-#1-issue-form-upgraded by @bipinparajuli in #2
- Create CODE_OF_CONDUCT.md by @wireva in #6
- Added code linter to utopia-php/config by @toukirkhan in #10
- Update composer.json by @christyjacob4 in #11
- updated doc - removed authors by @maxslimb in #8
- Feat 4391 add code analyzer to ‘utopia php/config' by @Aadeesh11 in #9
- Use github action for tests by @lohanidamodar in #13
- Update: optimize stuff in config loader. by @ItzNotABug in #14
- Feat: Config file adapters by @Meldiron in #15
New Contributors
- @Gautam1302 made their first contribution in #5
- @bipinparajuli made their first contribution in #2
- @wireva made their first contribution in #6
- @toukirkhan made their first contribution in #10
- @christyjacob4 made their first contribution in #11
- @maxslimb made their first contribution in #8
- @Aadeesh11 made their first contribution in #9
- @lohanidamodar made their first contribution in #13
- @ItzNotABug made their first contribution in #14
- @Meldiron made their first contribution in #15
Full Changelog: 0.2.2...1.0.0