forked from invoiceninja/invoiceninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.81 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hillelcoren/invoice-ninja",
"description": "An open-source invoicing site built with Laravel",
"keywords": ["invoice", "laravel"],
"license": "Attribution Assurance License",
"authors": [
{
"name": "Hillel Coren",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "4.1.25",
"patricktalmadge/bootstrapper": "4.1.x",
"zizaco/confide": "3.1.x",
"anahkiasen/former": "3.4.x",
"barryvdh/laravel-debugbar": "~1.8",
"chumper/datatable": "2.x",
"omnipay/omnipay": "~2.0",
"intervention/image": "1.x",
"webpatser/laravel-countries": "dev-master",
"barryvdh/laravel-ide-helper": "~1.0",
"doctrine/dbal": "~2.3",
"jsanc623/phpbenchtime": "2.x",
"lokielse/omnipay-alipay": "dev-master",
"coatesap/omnipay-datacash": "~2.0",
"alfaproject/omnipay-neteller": "~1.0",
"mfauveau/omnipay-pacnet": "~2.0",
"coatesap/omnipay-paymentsense": "~2.0",
"coatesap/omnipay-realex": "~2.0",
"fruitcakestudio/omnipay-sisow": "~2.0",
"alfaproject/omnipay-skrill": "dev-master"
},
"require-dev": {
"codeception/codeception": "dev-master"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php",
"app/libraries",
"vendor/php-payments/lib"
],
"psr-0" : {
"ninja" : "app/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan optimize",
"php artisan debugbar:publish"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan ide-helper:generate",
"php artisan debugbar:publish",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}