Skip to content

Support php 8 #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 60 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
cd736c0
Fix doctrine annotation laoder issue (#1)
petteri-hakala Dec 4, 2019
65b2b22
Dimensions for invoice lines (#2)
petteri-hakala Dec 5, 2019
f4074e5
Invoice line unit price type editable (#3)
petteri-hakala Dec 5, 2019
db70f71
Add free text to invoice product line (#4)
petteri-hakala Dec 5, 2019
90ddcd5
Delivery receiver details to SalesInvoice (#5)
petteri-hakala Dec 5, 2019
87f79cf
Ability to edit customer (#6)
petteri-hakala Dec 5, 2019
59dc9f9
Bug fix on customer edit action (#7)
petteri-hakala Dec 5, 2019
1f36ea4
Extend customer data (#8)
petteri-hakala Dec 9, 2019
eb7b6a5
Fix typo (#9)
petteri-hakala Dec 10, 2019
cde9f4f
Reference invoicenumber freetextafterlines data (#10)
petteri-hakala Dec 10, 2019
20fb739
Customer reference (#11)
petteri-hakala Dec 10, 2019
cb86dac
Set variables to correct order
Dec 11, 2019
56f0137
Bug fix on private customer
Dec 11, 2019
7e21516
Editable product identiefier type
Dec 11, 2019
8544a56
Product line accounting account
Dec 11, 2019
eee888d
Set vatcode and minor CS fixes
Dec 20, 2019
a50b0ec
Voucher
Jan 8, 2020
bc3be97
Send voucher
Jan 8, 2020
629ff0f
Add discount percentage property for invoice product line
Jan 16, 2020
ab71aea
More similar price type contant naming
Jan 16, 2020
4cc4d4a
Add voucher line description
Jan 27, 2020
f90d0aa
Add description to voucher
Jan 28, 2020
9552a4c
Update product name / description limits
Feb 17, 2020
73b4613
Cut salesinvoicefreetextafterlines according to netvisor limit
Feb 17, 2020
2a8ab9c
SalesInvoice getter
Feb 20, 2020
d57d232
Fix param name for getting sales invoice
Feb 20, 2020
2ee16af
Ability to set beforelines text on sales invoice
Feb 20, 2020
14e2801
Ability to update sales invoice
Feb 21, 2020
cf8b307
Ability to get vouchers
Feb 21, 2020
887304b
Ability to get certain voucher
Feb 21, 2020
1ce0891
Change to pascalcase as it actually is, unlike in the netvisor docume…
Feb 21, 2020
7415389
Purchase invoice dtd
Feb 25, 2020
ce03a93
Fix test helper
Feb 25, 2020
8d6a220
Purchase invoice line
Feb 25, 2020
29f84e6
Purchase invoice
Feb 25, 2020
3a67800
Ability to send purchase invoice
Feb 25, 2020
b2cc432
Add more data to purchase invoice
Feb 26, 2020
5188f02
Inturpit empty strings as nulls when adding vendor details
Feb 27, 2020
c5e5751
Fix buggy dtd
Mar 17, 2020
16764f4
Fix invalid relation
Mar 17, 2020
41dbb63
Assertion to validate xml validity
Mar 17, 2020
d0515b7
Test validity
Mar 17, 2020
a39e3ad
Ability to add purchase invoice attachments
Mar 17, 2020
7a4c268
Add invoice source to purchase invoice
Mar 17, 2020
993e688
Fixes to purchase attachment
Mar 17, 2020
b2d8c88
Ability to send purchase invoice state updates
Mar 18, 2020
22aedd8
Don't strip CDATA segments out from message
Mar 26, 2020
88a320c
Get purchase invoice
May 7, 2020
4c4ee41
Ability to fetch multiple purchase invoice by id
May 11, 2020
25360b8
Revert previous, apparently not working
May 11, 2020
c3530fa
Remove invalid ovt functionality
petteri-hakala Jun 30, 2020
33b671e
Updated guzzle version
petteri-hakala Dec 1, 2020
f1b5f01
add getSalesInvoices method
okilpirinne Nov 23, 2021
2fe6af2
Tests fixed to use phpunit 7.5.20
okilpirinne Nov 23, 2021
b356b2a
Update phpunit version
okilpirinne Nov 23, 2021
049e634
filter class for salesinvoices
okilpirinne Nov 24, 2021
afd8956
Merge pull request #14 from Fisplay/add-get-invoices-method
petteri-hakala Nov 24, 2021
6c0c7cf
change method name to correct one
okilpirinne Nov 25, 2021
700946c
Merge pull request #15 from Fisplay/change-invoice-list-get-name-to-c…
OttoKilpirinne Nov 25, 2021
436c4e4
Added support for php 8
jaakkom Feb 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
],

"require": {
"php": "^5.6 || ^7.0",
"jms/serializer": "^1.4",
"guzzlehttp/guzzle": "^6.2"
"php": ">=7.2",
"jms/serializer": "^3.11",
"guzzlehttp/guzzle": "^7.2"
},

"require-dev": {
"phpunit/phpunit": "^5.7"
"phpunit/phpunit": "^8.0"
},

"autoload": {
Expand Down
Loading