Skip to content

Commit 0b112a1

Browse files
committedMay 8, 2024
test(tests): adding skeleton tests
1 parent ccc5b19 commit 0b112a1

File tree

12 files changed

+546
-398
lines changed

12 files changed

+546
-398
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.phpunit.cache
12
/node_modules
23
/public/build
34
/public/hot

‎composer.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wireui/docs",
3-
"description": "WireUi Documentation",
43
"type": "library",
4+
"description": "WireUi Documentation",
55
"keywords": [
66
"livewire components",
77
"livewire-ui",
@@ -11,22 +11,17 @@
1111
"docs",
1212
"documentation"
1313
],
14-
"repositories": {
15-
"torchlight/torchlight-laravel": {
16-
"type": "github",
17-
"url": "git@github.com:PH7-Jack/torchlight-laravel.git"
18-
}
19-
},
14+
"license": "MIT",
2015
"require": {
2116
"php": "^8.3",
2217
"laravel/framework": "^11.0",
2318
"torchlight/torchlight-laravel": "dev-main"
2419
},
2520
"require-dev": {
26-
"laravel/pint": "^1.0",
21+
"laravel/pint": "^1.15",
2722
"orchestra/testbench": "^9.0",
28-
"pestphp/pest": "^2.24",
29-
"pestphp/pest-plugin-laravel": "^2.2",
23+
"pestphp/pest": "^2.34",
24+
"pestphp/pest-plugin-laravel": "^2.4",
3025
"pestphp/pest-plugin-livewire": "^2.1"
3126
},
3227
"authors": [
@@ -39,9 +34,12 @@
3934
"email": "joaopalopes24@gmail.com"
4035
}
4136
],
42-
"license": "MIT",
43-
"minimum-stability": "dev",
44-
"prefer-stable": true,
37+
"repositories": {
38+
"torchlight/torchlight-laravel": {
39+
"type": "github",
40+
"url": "git@github.com:PH7-Jack/torchlight-laravel.git"
41+
}
42+
},
4543
"autoload": {
4644
"psr-4": {
4745
"WireUi\\Docs\\": "src/"
@@ -67,5 +65,7 @@
6765
"allow-plugins": {
6866
"pestphp/pest-plugin": true
6967
}
70-
}
68+
},
69+
"minimum-stability": "dev",
70+
"prefer-stable": true
7171
}

0 commit comments

Comments
 (0)