-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to php 8.2 and fix migration id #4
- Loading branch information
1 parent
4318328
commit b30e1b9
Showing
8 changed files
with
30 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,16 @@ | |
{ | ||
"name": "chokeslam", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Simon Asika", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "beta", | ||
"require": { | ||
"myclabs/php-enum": "^1.8", | ||
"lyrasoft/luna": "^1.0||^2.0" | ||
"php": ">=8.2", | ||
"lyrasoft/luna": "^2.0" | ||
}, | ||
"extra": { | ||
"windwalker": { | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import u from '@main'; | ||
|
||
u.$ui.bootstrap.tooltip(); | ||
|
||
const formId = '#admin-form'; | ||
|
||
u.formValidation() | ||
.then(() => u.$ui.disableOnSubmit(formId)); | ||
u.form(formId).initComponent(); | ||
u.$ui.keepAlive(location.href); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import u from '@main'; | ||
|
||
u.$ui.bootstrap.tooltip(); | ||
|
||
const formId = '#admin-form'; | ||
|
||
u.grid(formId).initComponent(); | ||
u.$ui.disableOnSubmit(formId); | ||
u.$ui.checkboxesMultiSelect(formId); |
File renamed without changes.