1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/composer.json

60 lines
1.3 KiB
JSON
Raw Normal View History

2013-11-26 13:45:07 +01:00
{
2014-01-05 17:44:49 +01:00
"name": "hillelcoren/invoice-ninja",
"description": "An open-source invoicing site built with Laravel",
"keywords": ["invoice", "laravel"],
"license": "Attribution Assurance License",
2014-04-12 20:55:40 +02:00
"authors": [
{
"name": "Hillel Coren",
"email": "hillelcoren@gmail.com"
}
],
2013-11-26 13:45:07 +01:00
"require": {
2014-05-02 02:12:40 +02:00
"laravel/framework": "4.1.25",
2013-11-26 13:45:07 +01:00
"patricktalmadge/bootstrapper": "dev-develop",
2014-04-27 01:00:18 +02:00
"zizaco/confide": "3.1.x",
2013-11-26 13:45:07 +01:00
"anahkiasen/former": "dev-master",
"barryvdh/laravel-debugbar": "dev-master",
"chumper/datatable": "2.x",
2013-11-26 13:45:07 +01:00
"omnipay/omnipay": "2.x",
2014-07-17 11:06:21 +02:00
"intervention/image": "1.x",
2014-03-18 18:00:02 +01:00
"webpatser/laravel-countries": "dev-master"
},
"require-dev": {
2014-02-17 17:25:38 +01:00
"codeception/codeception": "dev-master"
2013-11-26 13:45:07 +01:00
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
2013-12-07 21:33:07 +01:00
"app/tests/TestCase.php",
"app/libraries",
"vendor/php-payments/lib"
2013-12-25 22:34:42 +01:00
],
"psr-0" : {
"ninja" : "app/"
}
2013-11-26 13:45:07 +01:00
},
"scripts": {
"post-install-cmd": [
"php artisan optimize",
"php artisan debugbar:publish"
2013-11-26 13:45:07 +01:00
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
"php artisan debugbar:publish"
2013-11-26 13:45:07 +01:00
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}