Rename component.component to component_id with relationship name change Rename more instances of parent to component Working on Incident Repository Fix Incident seeder component_id is fillable within the model Fix bad relationship Finished Incident repository Added Metric repository Updated tests for new dingo release
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"laravel/framework": "4.2.*",
|
|
"guzzlehttp/guzzle": "~5.0",
|
|
"dingo/api": "0.7.*",
|
|
"watson/validating": "0.10.*",
|
|
"thujohn/rss": "dev-master"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.3.0",
|
|
"mockery/mockery": "0.9.*"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"app/commands",
|
|
"app/controllers",
|
|
"app/models",
|
|
"app/database/migrations",
|
|
"app/database/seeds",
|
|
"app/tests/TestCase.php",
|
|
"app/filters"
|
|
],
|
|
"psr-4": {
|
|
"CachetHQ\\": "app/CachetHq"
|
|
}
|
|
},
|
|
"extra": {
|
|
"heroku": {
|
|
"framework": "silex",
|
|
"document-root": "public",
|
|
"index-document": "index.php",
|
|
"log-files": [
|
|
"app/storage/logs/laravel.log"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"php artisan optimize",
|
|
"chmod -R 777 app/storage public",
|
|
"php artisan migrate"
|
|
],
|
|
"post-update-cmd": [
|
|
"php artisan clear-compiled",
|
|
"php artisan optimize"
|
|
],
|
|
"post-create-project-cmd": [
|
|
"php artisan key:generate"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist"
|
|
}
|
|
}
|