1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
Go to file
2024-07-22 10:26:03 +10:00
.github Fixes for react build 2024-07-09 08:04:39 +10:00
app Fixes for null checks 2024-07-22 10:26:03 +10:00
bootstrap Updated translations 2022-11-07 18:24:20 +11:00
config V5.10.12 2024-07-20 13:38:12 +10:00
database Fixes for seeder 2024-07-17 09:49:28 +10:00
lang Fixes for translations of statics 2024-07-21 11:30:21 +10:00
openapi Updates for openapi 2024-06-08 09:13:47 +10:00
public Admin Portal - Selfhosted 2024-07-12 11:31:14 +00:00
resources Fixes for translations 2024-07-21 11:12:07 +10:00
routes unwind route hash 2024-07-19 08:53:30 +10:00
storage Fixes for tests 2023-11-01 14:09:47 +11:00
tests unwind route hash 2024-07-19 08:53:30 +10:00
_ide_helper_custom.php initial changings 2023-12-18 19:37:13 +01:00
.babelrc Enable ES6 class props with @babel/plugin-proposal-class-properties 2020-06-09 13:10:31 +02:00
.codacy.yml Update codacy.yml 2020-06-17 17:09:42 +02:00
.editorconfig Initial commit 2018-10-04 20:10:43 +03:00
.env.ci change PDF Generator 2024-06-18 14:45:55 +10:00
.env.dusk.example Fixes for reminder template emails 2020-11-08 08:17:30 +11:00
.env.example Update .env.example 2024-07-10 14:05:42 -05:00
.env.travis Laravel 7.x Shift (#40) 2020-09-06 19:38:10 +10:00
.gitattributes Initial commit 2018-10-04 20:10:43 +03:00
.gitignore Rollback .gitignore change 2024-07-11 11:40:19 +03:00
.htaccess Minor fixes for .htaccess 2020-12-01 21:22:01 +11:00
.prettierrc Update .prettierrc formatting settings 2020-06-09 12:29:43 +02:00
artisan Fixes for verifyphone 2022-11-03 16:45:56 +11:00
CODE_OF_CONDUCT.md Code of Conduct 2021-05-03 21:23:39 +10:00
codecov.yml add support for code coverage (#2417) 2018-10-05 21:51:06 +10:00
composer.json Updates for beacon package dependency 2024-06-27 13:12:53 +10:00
composer.lock Fixes for null checks 2024-07-22 10:26:03 +10:00
CONTRIBUTING.md Remove .htaccess from update script 2023-01-17 08:31:07 +11:00
cypress.config.js commit .env.cypress 2023-02-18 10:17:55 +11:00
LICENSE License update 2021-06-15 21:42:00 +10:00
modules_statuses.json minor fixes 2024-06-05 10:35:15 +10:00
package-lock.json Updates for resources 2024-06-05 09:57:20 +10:00
package.json Update dependencies in package.json 2024-03-04 18:36:23 +01:00
phpstan.neon Static analysis 2024-07-11 15:53:18 +10:00
phpunit.xml Updates 2024-05-27 12:10:53 +10:00
postcss.config.cjs Migrate Tailwind config to CJS 2023-09-04 16:40:43 +02:00
preload.php Fixes for preloader - exclude testing frameworks 2023-03-12 20:05:09 +11:00
README.md Remove key:generate from readme 2024-07-12 14:01:22 +03:00
tailwind.config.cjs updated resources 2024-06-06 11:17:34 +10:00
VERSION.txt V5.10.12 2024-07-20 13:38:12 +10:00
vite.config.ts Fixes for copying vendor file 2023-10-02 15:02:29 +02:00
vite.config.ts.react add vite stub 2024-06-05 15:14:22 +10:00
webpack.mix.js Added BACS to payment controller 2022-12-16 12:05:10 +01:00

Sublime's custom image

v5-develop phpunit Codacy Badge CLA assistant

Invoice Ninja 5

Hosted | Self-Hosted

Join us on Slack, Discord, Support Forum

Introduction

Version 5 of Invoice Ninja is here! We took the best parts of version 4 and add the most requested features to produce a invoicing application like no other.

All Pro and Enterprise features from the hosted app are included in the open code. We offer a $30 per year white-label license to remove the Invoice Ninja branding from client facing parts of the app.

Setup

Mobile Apps

Desktop Apps

Installation Options

Quick Hosting Setup

git clone --single-branch --branch v5-stable https://github.com/invoiceninja/invoiceninja.git
cp .env.example .env
composer i -o --no-dev

Please Note: Your APP_KEY in the .env file is used to encrypt data, if you lose this you will not be able to run the application.

Run if you want to load sample data, remember to configure .env

php artisan migrate:fresh --seed && php artisan db:seed && php artisan ninja:create-test-data

To run the web server

php artisan serve 

Navigate to (replace localhost with the appropriate domain)

http://localhost:8000/setup - To setup your configuration if you did not load sample data.
http://localhost:8000/ - For Administrator Logon

user: small@example.com
pass: password

http://localhost:8000/client/login - For Client Portal

user: user@example.com
pass: password

Developers Guide

App Design

The API and client portal have been developed using Laravel if you wish to contribute to this project familiarity with Laravel is essential.

When inspecting functionality of the API, the best place to start would be in the routes/api.php file which describes all of the availabe API endpoints. The controller methods then describe all the entry points into each domain of the application, ie InvoiceController / QuoteController

The average API request follows this path into the application.

  • Middleware processes the request initially inspecting the domain being requested + provides the authentication layer.
  • The request then passes into a Form Request (Type hinted in the controller methods) which is used to provide authorization and also validation of the request. If successful, the request is then passed into the controller method where it is digested, here is an example:
public function store(StoreInvoiceRequest $request)
{

    $invoice = $this->invoice_repo->save($request->all(), InvoiceFactory::create(auth()->user()->company()->id, auth()->user()->id));

    $invoice = $invoice->service()
                        ->fillDefaults()
                        ->triggeredActions($request)
                        ->adjustInventory()
                        ->save();

    event(new InvoiceWasCreated($invoice, $invoice->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));

    return $this->itemResponse($invoice);

}

Here for example we are storing a new invoice, we pass the validated request along with a factory into the invoice repository where it is processed and saved.

The returned invoice then passes through its service class (app/Services/Invoice) where various actions are performed.

A event is then fired which notifies listeners in the application (app/Providers/EventServiceProvider) which perform non blocking sub tasks

Finally the invoice is transformed (app/Transformers/) and returned as a response via Fractal.

Developer environment

Using the Quick Hosting Setup describe above you can quickly get started building out your development environment. Instead of using

composer i -o --no-dev

use

composer i -o

This provides the developer tools including phpunit which allows the test suite to be run.

If you are considering contributing back to the main repository, please add in any tests for new functionality / modifications. This will greatly increase the chances of your PR being accepted

Also, if you plan any additions for the main repository, you may want to discuss this with us first on Slack where we can assist with any technical information and provide advice.

Credits

Security

If you find a security issue with this application, please send an email to contact@invoiceninja.com. Please follow responsible disclosure procedures if you detect an issue. For further information on responsible disclosure please read here.

License

Invoice Ninja is released under the Elastic License.
See LICENSE for details.