Skip to content

Commit 2fe7eaf

Browse files
Merge pull request #3 from devMuhammad05/dev
feat: Implement WetroCloud PHP SDK with full API coverage and comprehensive tests
2 parents 2df3bf1 + b1a1174 commit 2fe7eaf

8 files changed

Lines changed: 5510 additions & 1471 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
/vendor/
2+
/index.php
3+
/.fleet
4+
/.idea
5+
/.nova
6+
/.vscode
7+
/.zed
8+
/vendor
9+
/.qodo

composer.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,29 @@
1515
"Wetrocloud\\WetrocloudSdk\\": "src/"
1616
}
1717
},
18+
"autoload-dev": {
19+
"psr-4": {
20+
"Tests\\": "tests/"
21+
}
22+
},
1823
"authors": [
1924
{
2025
"name": "Muhammad Yahaya"
2126
}
2227
],
2328
"minimum-stability": "dev",
29+
"require": {
30+
"php": "^8.3",
31+
"guzzlehttp/guzzle": "7.9.x-dev"
32+
},
2433
"require-dev": {
25-
"nunomaduro/larastan": "3.x-dev"
34+
"larastan/larastan": "3.0",
35+
"pestphp/pest": "4.x-dev",
36+
"mockery/mockery": "^1.6"
37+
},
38+
"config": {
39+
"allow-plugins": {
40+
"pestphp/pest-plugin": true
41+
}
2642
}
2743
}

0 commit comments

Comments
 (0)