Created
April 15, 2014 18:54
-
-
Save tbergeron/10759124 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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