Skip to content

Commit 3b7e0c2

Browse files
Add pestphp (Ashishkumbhar01#27)
* update * Supabase Storage * Supabase Storage * Create FUNDING.yml * Update FUNDING.yml * Supabase v1.0.4 * Supabase v1.0.4 * update * update * update * Add guzzlehttp * Adding PHPUnit for Test * add pesephp for testing
1 parent 736161a commit 3b7e0c2

File tree

10 files changed

+4370
-165
lines changed

10 files changed

+4370
-165
lines changed

.env.example

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
SB_URL=
2-
SB_APIKEY=
1+
# Supabase Config
2+
3+
# Supabase database URL
4+
SB_URL=https://[your].supabase.co
5+
6+
# Supabase Anon or `service_role` API key.
7+
SB_APIKEY= your anon api key

composer.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
"type": "library",
77
"require": {
88
"php": "^7.0||^8.0",
9-
"vlucas/phpdotenv": "^5.6"
9+
"vlucas/phpdotenv": "^5.6",
10+
"guzzlehttp/guzzle": "^7.9"
1011
},
1112
"require-dev": {
1213
"phpstan/phpstan": "^1.12",
1314
"symfony/polyfill-php80": "^1.31",
1415
"symfony/polyfill-ctype": "^1.31",
15-
"symfony/polyfill-mbstring": "^1.31"
16+
"symfony/polyfill-mbstring": "^1.31",
17+
"phpunit/phpunit": "^11.4",
18+
"pestphp/pest": "^3.5"
1619
},
1720
"license": "MIT",
1821
"autoload": {
@@ -43,5 +46,10 @@
4346
]
4447
},
4548
"minimum-stability": "dev",
46-
"prefer-stable": true
49+
"prefer-stable": true,
50+
"config": {
51+
"allow-plugins": {
52+
"pestphp/pest-plugin": true
53+
}
54+
}
4755
}

0 commit comments

Comments
 (0)