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

50 lines
1.1 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",
2013-11-26 13:45:07 +01:00
"require": {
"laravel/framework": "4.1.*",
2013-11-26 13:45:07 +01:00
"jasonlewis/basset": "dev-master",
"patricktalmadge/bootstrapper": "dev-develop",
"zizaco/confide": "3.1.x",
2013-11-26 13:45:07 +01:00
"anahkiasen/former": "dev-master",
"barryvdh/laravel-debugbar": "dev-master",
"chumper/datatable": "dev-master",
"omnipay/omnipay": "2.x",
2013-11-28 22:10:01 +01:00
"intervention/image": "dev-master",
2014-01-05 17:44:49 +01:00
"webpatser/laravel-countries": "dev-master",
"anahkiasen/rocketeer": "dev-develop"
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",
2013-12-25 22:34:42 +01:00
"app/libraries"
],
"psr-0" : {
"ninja" : "app/"
}
2013-11-26 13:45:07 +01:00
},
"scripts": {
"post-install-cmd": [
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}