Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykuo committed May 20, 2020
0 parents commit 3c5847c
Show file tree
Hide file tree
Showing 18 changed files with 2,927 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor/
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Work In Process

```composer require dennykuo/invoice-porter```

引入
```use InvoicePorter\EzpayInvoice;```

26 changes: 26 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "dennykuo/invoice-porter",
"description": "藍新電子發票串接",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Denny"
}
],
"require": {
"guzzlehttp/guzzle": "^6.5"
},
"autoload": {
"psr-4": {
"InvoicePorter\\": "src/"
}
},
"autoload-dev": {
"files": ["src/helpers.php"]
},
"require-dev": {
"symfony/var-dumper": "^5.0",
"phpunit/phpunit": "^9.1"
}
}
Loading

0 comments on commit 3c5847c

Please sign in to comment.