Skip to content

Commit 59163e2

Browse files
author
simialbi
committed
bumped to php 8.2 and bootstrap 5
removed gannt part added new features
1 parent 8556186 commit 59163e2

File tree

153 files changed

+17576
-3313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+17576
-3313
lines changed

codeception.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ extensions:
1111
- Codeception\Extension\RunFailed
1212
settings:
1313
colors: true
14+
error_level: E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED
1415
memory_limit: 1024M
1516
modules:
1617
config:

composer.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -21,33 +21,33 @@
2121
"source": "https://github.com/simialbi/yii2-kanban",
2222
"issues": "https://github.com/simialbi/yii2-kanban/issues"
2323
},
24-
"minimum-stability": "beta",
24+
"minimum-stability": "dev",
25+
"prefer-stable": true,
2526
"require": {
26-
"php": ">=5.6",
27+
"php": ">=8.2",
28+
"ext-dom": "*",
29+
"ext-gd": "*",
2730
"yiisoft/yii2": "^2.0.20",
28-
"yiisoft/yii2-bootstrap4": "^2.0.4",
31+
"yiisoft/yii2-bootstrap5": "^2.0.0",
2932
"arogachev/yii2-sortable": "^0.1.6",
3033
"bower-asset/fullcalendar": "4.2.*",
31-
"creocoder/yii2-nested-sets": "^0.9",
32-
"fortawesome/font-awesome": "^5.12.0",
3334
"kartik-v/yii2-widget-fileinput": "^1.0.9",
34-
"npm-asset/highlight.js": "^9.18.1",
35-
"npm-asset/swiper": "^6.3.5",
35+
"npm-asset/swiper": "^11.1.9",
36+
"phpoffice/phpspreadsheet": "^5.1.0",
3637
"rmrevin/yii2-fontawesome": "^3.4.0",
38+
"sandritsch91/yii2-froala-editor": "^1.0.0",
3739
"sandritsch91/yii2-widget-flatpickr": "^1.0.0",
3840
"simialbi/yii2-simialbi-base": ">=0.10.2 <1.0 | ^1.0.0",
39-
"simialbi/yii2-summernote": "^1.2.1",
40-
"simialbi/yii2-widget-chart": "^0.7.0",
41+
"simialbi/yii2-widget-chart": "^0.8.0",
4142
"simialbi/yii2-widget-hideseek": "^1.0.0",
42-
"simialbi/yii2-widget-turbo": "^1.0.0",
43+
"simialbi/yii2-widget-turbo": "dev-master",
4344
"simshaun/recurr": "^5.0.0"
4445
},
4546
"require-dev": {
46-
"ext-gd": "*",
4747
"ext-mbstring": "*",
48-
"codeception/module-asserts": "^2.0.1",
49-
"codeception/module-filesystem": "^2.0.1",
50-
"codeception/module-yii2": "^1.0",
48+
"codeception/module-asserts": "^3.0.0",
49+
"codeception/module-filesystem": "^3.0.0",
50+
"codeception/module-yii2": "^2.0.0",
5151
"simialbi/yii2-ticket": "~1.0@dev",
5252
"yiisoft/yii2-coding-standards": "~2.0",
5353
"yiisoft/yii2-symfonymailer": "^2.0.3"
@@ -63,7 +63,7 @@
6363
},
6464
"autoload-dev": {
6565
"psr-4": {
66-
"simialbi\\extensions\\kanban\\": "tests"
66+
"simialbi\\extensions\\kanban\\": "tests"
6767
}
6868
},
6969
"repositories": [
@@ -74,12 +74,12 @@
7474
],
7575
"extra": {
7676
"branch-alias": {
77-
"dev-master": "2.0.x-dev"
78-
}
79-
},
80-
"config": {
81-
"allow-plugins": {
82-
"yiisoft/yii2-composer": true
77+
"dev-master": "2.x-dev"
8378
}
79+
},
80+
"config": {
81+
"allow-plugins": {
82+
"yiisoft/yii2-composer": true
83+
}
8484
}
8585
}

src/BoardEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ class BoardEvent extends Event
1818
/**
1919
* @var Board The board which triggered the event
2020
*/
21-
public $board;
21+
public Board $board;
2222
}

src/BucketEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ class BucketEvent extends Event
1818
/**
1919
* @var Bucket The board which triggered the event
2020
*/
21-
public $bucket;
21+
public Bucket $bucket;
2222
}

src/KanbanAsset.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
namespace simialbi\yii2\kanban;
99

10-
1110
use simialbi\yii2\web\AssetBundle;
1211

1312
class KanbanAsset extends AssetBundle

src/KanbanSwiperAsset.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,11 @@ class KanbanSwiperAsset extends AssetBundle
2929
public $js = [
3030
'swiper-bundle.min.js'
3131
];
32+
33+
/**
34+
* {@inheritDoc}
35+
*/
36+
public $publishOptions = [
37+
'forceCopy' => YII_DEBUG
38+
];
3239
}

0 commit comments

Comments
 (0)