Skip to content

Commit f94519d

Browse files
authored
Merge pull request #10 from dAppCore/dev
feat(admin): add menu registry and search infrastructure
2 parents 8ed3023 + 0edd921 commit f94519d

39 files changed

Lines changed: 4629 additions & 1186 deletions

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ jobs:
5454
uses: actions/checkout@v6
5555

5656
- name: Setup Node
57-
uses: actions/setup-node@v4
57+
uses: actions/setup-node@v6
5858
with:
59-
node-version: 20
59+
node-version: 24
6060
cache: npm
6161

6262
- name: Install dependencies

composer.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
"license": "EUPL-1.2",
1111
"require": {
1212
"php": "^8.2",
13-
"lthn/php": "*"
13+
"lthn/php": "^0.0.4"
14+
},
15+
"require-dev": {
16+
"laravel/pint": "^1.29",
17+
"pestphp/pest": "^3.8"
1418
},
1519
"autoload": {
1620
"psr-4": {
@@ -19,6 +23,16 @@
1923
"Core\\Service\\Admin\\": "Service/"
2024
}
2125
},
26+
"autoload-dev": {
27+
"psr-4": {
28+
"Tests\\": "tests/"
29+
}
30+
},
31+
"config": {
32+
"allow-plugins": {
33+
"pestphp/pest-plugin": true
34+
}
35+
},
2236
"extra": {
2337
"laravel": {
2438
"providers": [

0 commit comments

Comments
 (0)