Skip to content

Commit

Permalink
Prepare first release. (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Feb 26, 2024
1 parent 713aca3 commit 6fe7cc8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 24 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log

## 0.1.0 February 26, 2024

- Initial release.
2 changes: 0 additions & 2 deletions changelog.md

This file was deleted.

27 changes: 7 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,17 @@
"widget"
],
"license": "mit",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"npm-asset/selectize--selectize": "^0.15.2",
"oomphinc/composer-installers-extender": "^2.0",
"yii2-extensions/asset-bootstrap5": "dev-main",
"yiisoft/yii2": "*"
"yii2-extensions/asset-bootstrap5": "^0.1",
"yiisoft/yii2": "^2.0.49 || ^2.2"
},
"require-dev": {
"maglnet/composer-require-checker": "^4.6",
"php-forge/support": "dev-main",
"phpunit/phpunit": "^10.2",
"roave/infection-static-analysis-plugin": "^1.32",
"maglnet/composer-require-checker": "^4.7",
"php-forge/support": "^0.1",
"phpunit/phpunit": "^10.5",
"roave/infection-static-analysis-plugin": "^1.34",
"yii2-extensions/phpstan": "dev-main"
},
"autoload": {
Expand All @@ -36,17 +33,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"./node_modules/{$name}/": [
"type:bower-asset",
"type:npm-asset"
]
"dev-main": "0.1-dev"
}
},
"config": {
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ protected function mockApplication(): void
'id' => 'testapp',
'aliases' => [
'@root' => dirname(__DIR__),
'@bower' => '@root/node_modules',
'@npm' => '@root/node_modules',
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
],
'basePath' => dirname(__DIR__),
'components' => [
Expand Down

0 comments on commit 6fe7cc8

Please sign in to comment.