mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-19 03:04:05 +00:00
Add doctrine/dbal and run pint
This commit is contained in:
@@ -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
2104
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -24,8 +24,5 @@ class AddUserIdToExpensesTable extends Migration
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
|
||||
}
|
||||
public function down() {}
|
||||
}
|
||||
|
||||
23
database/migrations/2024_07_12_235756_update_version_123.php
Normal file
23
database/migrations/2024_07_12_235756_update_version_123.php
Normal 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.3');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Setting::setSetting('version', '1.2.2');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user