Skip to content

Instantly share code, notes, and snippets.

@tbergeron
Created April 15, 2014 18:54
Show Gist options
  • Save tbergeron/10759124 to your computer and use it in GitHub Desktop.
Save tbergeron/10759124 to your computer and use it in GitHub Desktop.
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"ckeditor": "4.2.*",
},
"repositories": [
{
"type": "package",
"package": {
"name": "ckeditor",
"version": "4.2.1",
"source": {
"url": "https://github.com/ckeditor/ckeditor-releases.git",
"type": "git",
"reference": "4.2/full"
}
}
}
],
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan asset:publish --path='vendor/ckeditor' ckeditor",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan ide-helper:generate",
"php artisan ide-helper:models --dir='app/models'",
"php artisan debugbar:publish",
"php artisan asset:publish --path='vendor/ckeditor' ckeditor",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment