expense tracker api
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitignore
0 → 100644
.styleci.yml
0 → 100644
README.md
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Events/Event.php
0 → 100644
app/Events/ExampleEvent.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Jobs/ExampleJob.php
0 → 100644
app/Jobs/Job.php
0 → 100644
app/Models/Expense.php
0 → 100644
app/Models/User.php
0 → 100644
artisan
0 → 100755
bootstrap/app.php
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "laravel/lumen", | |||
"description": "The Laravel Lumen Framework.", | |||
"keywords": ["framework", "laravel", "lumen"], | |||
"license": "MIT", | |||
"type": "project", | |||
"require": { | |||
"php": "^7.3|^8.0", | |||
"firebase/php-jwt": "^6.8", | |||
"laravel/lumen-framework": "^8.3.1" | |||
}, | |||
"require-dev": { | |||
"fakerphp/faker": "^1.9.1", | |||
"mockery/mockery": "^1.3.1", | |||
"phpunit/phpunit": "^9.5.10" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"App\\": "app/", | |||
"Database\\Factories\\": "database/factories/", | |||
"Database\\Seeders\\": "database/seeders/" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"classmap": [ | |||
"tests/" | |||
] | |||
}, | |||
"config": { | |||
"preferred-install": "dist", | |||
"sort-packages": true, | |||
"optimize-autoloader": true | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true, | |||
"scripts": { | |||
"post-root-package-install": [ | |||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |||
] | |||
} | |||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
database/migrations/.gitkeep
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/index.php
0 → 100644
resources/views/.gitkeep
0 → 100644
routes/web.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
tests/ExampleTest.php
0 → 100644
tests/TestCase.php
0 → 100644
Please register or sign in to comment