Skip to content

Commit

Permalink
Merge pull request #3 from dystcz/feature/add-laravel-11-support
Browse files Browse the repository at this point in the history
Add laravel 11 support
  • Loading branch information
repl6669 authored May 2, 2024
2 parents 3249bff + e303f65 commit 9f7baae
Show file tree
Hide file tree
Showing 7 changed files with 8,908 additions and 71 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ build
vendor
tests/TestSupport/temp
tests/temp
composer.lock
phpunit.xml
.env
.phpunit.result.cache
.php_cs.cache
.php_cs.cache
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Simple wrapper for official php package https://github.com/fakturoid/fakturoid-p
Add the package in your composer.json by executing the command.

```bash
composer require dominik-wbz/laravel-fakturoid
composer require dystcz/laravel-fakturoid
```

This will both update composer.json and install the package into the vendor/ directory.
Expand Down Expand Up @@ -81,4 +81,4 @@ try {

## License

Copyright (c) 2019 - 2020 webiz eu s.r.o MIT Licensed.
Copyright (c) 2019 - 2024 dyst digital s.r.o MIT Licensed.
124 changes: 61 additions & 63 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,63 @@
{
"name": "dystcz/laravel-fakturoid",
"description": "Fakturoid Laravel Wrapper",
"keywords": [
"webiz",
"laravel",
"ecommerce",
"invoicing"
],
"homepage": "https://github.com/dystcz/laravel-fakturoid",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dominik Nguyen",
"email": "dom@webiz.cz",
"role": "Developer"
},
{
"name": "Jakub Theimer",
"email": "theimer@madne.st",
"role": "Developer"
}
],
"require": {
"php": ">=7.3.0",
"laravel/framework": "^10.0",
"illuminate/support": "^10.0",
"fakturoid/fakturoid-php": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"WEBIZ\\LaravelFakturoid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WEBIZ\\LaravelFakturoid\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"WEBIZ\\LaravelFakturoid\\FakturoidServiceProvider"
],
"aliases": {
"Fakturoid": "WEBIZ\\LaravelFakturoid\\Facade"
}
}
}
"name": "dystcz/laravel-fakturoid",
"description": "Fakturoid Laravel Wrapper",
"keywords": [
"dystopia",
"laravel",
"ecommerce",
"invoicing"
],
"homepage": "https://github.com/dystcz/laravel-fakturoid",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dominik Nguyen",
"email": "dominik@dy.st",
"role": "Developer"
},
{
"name": "Jakub Theimer",
"email": "jakub@dy.st",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^11.0",
"illuminate/support": "^11.0",
"fakturoid/fakturoid-php": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"Dystcz\\LaravelFakturoid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dystcz\\LaravelFakturoid\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Dystcz\\LaravelFakturoid\\FakturoidServiceProvider"
],
"aliases": {
"Fakturoid": "Dystcz\\LaravelFakturoid\\Facade"
}
}
}
}
Loading

0 comments on commit 9f7baae

Please sign in to comment.