Skip to content

Commit 6908d91

Browse files
committed
add tests
1 parent d4ac2c7 commit 6908d91

File tree

75 files changed

+11770
-2657
lines changed

Some content is hidden

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

75 files changed

+11770
-2657
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ vendor/
66
.env*
77
.DS_Store
88
*.db
9+
10+
build/
11+
.vscode/

composer.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
"Libsql\\Laravel\\": "src/"
77
}
88
},
9+
"autoload-dev": {
10+
"psr-4": {
11+
"Libsql\\Laravel\\Tests\\": "tests/",
12+
"Workbench\\App\\": "workbench/app/"
13+
}
14+
},
915
"require": {
1016
"turso/libsql": "^0.2",
1117
"illuminate/database": "^11.0",
@@ -14,7 +20,9 @@
1420
"require-dev": {
1521
"phpunit/phpunit": "^11",
1622
"friendsofphp/php-cs-fixer": "^3.64",
17-
"phpstan/phpstan": "2.0.x-dev"
23+
"phpstan/phpstan": "2.0.x-dev",
24+
"orchestra/testbench": "^9.9",
25+
"pestphp/pest": "^3.7"
1826
},
1927
"authors": [
2028
{
@@ -28,5 +36,10 @@
2836
"Libsql\\Laravel\\LibsqlServiceProvider"
2937
]
3038
}
39+
},
40+
"config": {
41+
"allow-plugins": {
42+
"pestphp/pest-plugin": true
43+
}
3144
}
3245
}

0 commit comments

Comments
 (0)