Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ging-dev committed Jun 29, 2024
0 parents commit 52dafb8
Show file tree
Hide file tree
Showing 15 changed files with 1,534 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vendor
test.php
*.cache
33 changes: 33 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "gingdev/ipay",
"description": "IPay API",
"type": "library",
"license": "MIT",
"autoload": {
"classmap": ["src"]
},
"authors": [
{
"name": "ging-dev",
"email": "thanh1101dev@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php-http/httplug": "^2.4",
"php-http/client-common": "^2.7",
"nette/utils": "^4.0",
"league/object-mapper": "dev-main"
},
"require-dev": {
"php-http/curl-client": "^2.3",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.11"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}
Loading

0 comments on commit 52dafb8

Please sign in to comment.