Skip to content

Commit

Permalink
Update: Laravel 10 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ekmungai committed Apr 18, 2023
1 parent 4dccabc commit f9008bb
Show file tree
Hide file tree
Showing 6 changed files with 2,575 additions and 3,325 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## 4.0.0 - 2021-04-20
## 5.0.1 - 2023-04-18

- Add Laravel 10 Compatibility
## 5.0.0 - 2021-04-20

- Add Laravel 9 Compatibility
- Minimum PHP 8.0 requirement
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This Package enables any Laravel application to generate [International Financia

The package supports multiple Entities (Companies), Account Categorization, Transaction assignment, Start of Year Opening Balances and accounting for VAT Transactions. Transactions are also protected against tampering via direct database changes ensuring the integrity of the Ledger. Outstanding amounts for clients and suppliers can also be displayed according to how long they have been outstanding using configurable time periods (Current, 31 - 60 days, 61 - 90 days etc). Finally, the package supports the automated posting of forex difference transactions both within the reporting period as well as translating foreign denominated account balances at a set closing rate.

This package's functionality is now available as a REST API Service. More details can be found [here](https://karanjamungai.com/posts/accounting_software/)
This package's functionality is now available as a REST API Service. More details can be found [here](https://microbooks.io)
## Table of contents
- [Eloquent IFRS](#eloquent-ifrs)
- [Table of contents](#table-of-contents)
Expand Down
21 changes: 8 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,18 @@
],
"minimum-stability": "dev",
"require": {
"php": "^8.0.2",
"illuminate/database": "^8.4|^9.0",
"illuminate/auth": "^8.4|^9.0",
"php": "^8.1",
"illuminate/database": "^9.0|^10.0",
"illuminate/auth": "^9.0|^10.0",
"doctrine/dbal": "^2.10|^3.1"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"friendsofphp/php-cs-fixer": "^2.16",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"spatie/laravel-ignition": "^1.6.4|^2.0",
"laravel/legacy-factories": "1.x-dev",
"nunomaduro/collision": "^5.0",
"nunomaduro/larastan": "^0.7.12",
"phpmd/phpmd": "^2.8",
"phpunit/phpunit": "9.4.3",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "*",
"orchestra/testbench": "^5.0|^6.0"
"orchestra/testbench": "^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
Expand All @@ -60,4 +55,4 @@
]
}
}
}
}
Loading

0 comments on commit f9008bb

Please sign in to comment.