Skip to content

Commit b84f4b9

Browse files
committed
init: initial commit
0 parents  commit b84f4b9

16 files changed

+8491
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"cSpell.enabled": false
3+
}

composer.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "mariolucasdev/payhub",
3+
"type": "library",
4+
"autoload": {
5+
"psr-4": {
6+
"Payhub\\": "src/"
7+
}
8+
},
9+
"authors": [
10+
{
11+
"name": "Mário Lucas",
12+
"email": "[email protected]"
13+
}
14+
],
15+
"require-dev": {
16+
"pestphp/pest": "^3.5"
17+
},
18+
"config": {
19+
"allow-plugins": {
20+
"pestphp/pest-plugin": true
21+
}
22+
},
23+
"require": {
24+
"laravel/framework": "^11.32"
25+
},
26+
"scripts": {
27+
"test": "vendor/bin/pest"
28+
}
29+
}

0 commit comments

Comments
 (0)