File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 2626 },
2727 "autoload-dev" : {
2828 "psr-4" : {
29- "Supabase \\ Tests\\ " : " tests/"
29+ "Tests\\ " : " tests/"
3030 }
3131 },
3232 "support" : {
5151 "url" : " https://opencollective.com/CodeWithSushil"
5252 }
5353 ],
54+ "scripts" : {
55+ "post-root-package-install" : [
56+ " @php -r \" file_exists('.env') || copy('.env.example', '.env');\" "
57+ ],
58+ "test:unit" : " pest --colors=always --parallel" ,
59+ "test:types" : " phpstan analyse --ansi" ,
60+ "test" : [
61+ " @test:unit" ,
62+ " @test:types"
63+ ]
64+ },
5465 "minimum-stability" : " dev" ,
5566 "prefer-stable" : true ,
5667 "config" : {
Original file line number Diff line number Diff line change 1+ parameters:
2+ level: max
3+ paths:
4+ - src
5+
6+ reportUnmatchedIgnoredErrors: true
Original file line number Diff line number Diff line change 11<?php
22
3- namespace Supabase \ Tests ;
3+ namespace Tests ;
44
55use PHPUnit \Framework \TestCase as BaseTestCase ;
66
You can’t perform that action at this time.
0 commit comments