8 Commits
1.2.1 ... 1.x

Author SHA1 Message Date
Darko Gjorgjijoski
27a511bc09 Update version
[ci-skip]
2024-07-13 03:11:14 +02:00
Darko Gjorgjijoski
1317d57ef8 Update readme.md 2024-07-13 03:07:18 +02:00
Darko Gjorgjijoski
ba85f407d6 Revert "Add version.md file"
This reverts commit 75b0c264dc.
2024-07-13 02:49:02 +02:00
Darko Gjorgjijoski
b37019f845 Set the default database to SQLite 2024-07-13 02:29:20 +02:00
Darko Gjorgjijoski
75b0c264dc Add version.md file 2024-07-13 02:14:41 +02:00
Darko Gjorgjijoski
98852686c7 Add doctrine/dbal and run pint 2024-07-13 02:03:22 +02:00
Jay Muntz
72311db1bd Fix SES configuration process to set correct SES_KEY and SES_SECRET (#74)
* Fix SES configuration process to set correct SES_KEY and SES_SECRET

* Fixed SES from name

---------

Co-authored-by: Jay Muntz <jaymuntz@jaymuntz.com>
2024-05-31 12:46:06 +02:00
Darko Gjorgjijoski
1e530e0387 Include lang directory in the dist build (#65)
* Include lang/ dir in the build

* Bump version
2024-05-04 15:27:40 +02:00
9 changed files with 1156 additions and 1037 deletions

View File

@@ -4,12 +4,12 @@ APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://invoiceshelf.test
DB_CONNECTION=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=invoiceshelf
DB_USERNAME=invoiceshelf
DB_PASSWORD="invoiceshelf"
DB_CONNECTION=sqlite
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file

View File

@@ -25,6 +25,7 @@ dist-gen: clean composer npm-build
@cp -r public/robots.txt InvoiceShelf/public
@cp -r public/web.config InvoiceShelf/public
@cp -r resources InvoiceShelf
@cp -r lang InvoiceShelf
@cp -r routes InvoiceShelf
@cp -r storage InvoiceShelf
@cp -r vendor InvoiceShelf 2> /dev/null || true

View File

@@ -265,9 +265,9 @@ class EnvironmentManager
'MAIL_PASSWORD' => config('mail.password'),
'MAIL_ENCRYPTION' => $request->get('mail_encryption'),
'MAIL_FROM_ADDRESS' => $request->get('from_mail'),
'MAIL_FROM_NAME' => $request->get('from_mail'),
'SES_KEY' => $request->get('from_mail'),
'SES_SECRET' => $request->get('from_name'),
'MAIL_FROM_NAME' => $request->get('from_name'),
'SES_KEY' => $request->get('mail_ses_key'),
'SES_SECRET' => $request->get('mail_ses_secret'),
];
break;

View File

@@ -9,18 +9,19 @@
"type": "project",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.10",
"laravel/sanctum": "^3.3",
"laravel/tinker": "^2.8",
"laravel/helpers": "^1.5",
"laravel/ui": "^4.4",
"ext-json": "*",
"aws/aws-sdk-php": "^3.297",
"barryvdh/laravel-dompdf": "^v2.0",
"invoiceshelf/modules": "^1.0.0",
"doctrine/dbal": "^3.8",
"dragonmantank/cron-expression": "^3.3",
"guzzlehttp/guzzle": "^7.2",
"invoiceshelf/modules": "^1.0.0",
"jasonmccreary/laravel-test-assertions": "^2.3",
"laravel/framework": "^10.10",
"laravel/helpers": "^1.5",
"laravel/sanctum": "^3.3",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.4",
"lavary/laravel-menu": "^1.8",
"league/flysystem-aws-s3-v3": "^3.23",
"predis/predis": "^2.2",
@@ -38,7 +39,7 @@
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.1",
"spatie/laravel-ignition": "^2.0",
"barryvdh/laravel-ide-helper": "^2.13",
"barryvdh/laravel-ide-helper": "v3.0.0",
"beyondcode/laravel-dump-server": "^1.9",
"pestphp/pest": "^2.33",
"pestphp/pest-plugin-faker": "^2.0",

2104
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -24,8 +24,5 @@ class AddUserIdToExpensesTable extends Migration
*
* @return void
*/
public function down()
{
}
public function down() {}
}

View File

@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use InvoiceShelf\Models\Setting;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Setting::setSetting('version', '1.2.2');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Setting::setSetting('version', '1.2.1');
}
};

View File

@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use InvoiceShelf\Models\Setting;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Setting::setSetting('version', '1.3.0');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Setting::setSetting('version', '1.2.2');
}
};

View File

@@ -1,4 +1,4 @@
<img src="https://github.com/InvoiceShelf/InvoiceShelf/assets/5760249/70c0ea3a-b497-4d9a-96f5-b15d112d6f59">
<img src="https://github.com/user-attachments/assets/a6ae2080-e865-4fde-b41d-5a09964d7de2">
## Introduction