1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "ascarion/dumbo",
- "description": "Dumbo Film Platform",
- "keywords": ["dumbo", "film"],
- "require": {
- "laravel/framework": "4.0.*",
- "guzzlehttp/guzzle": "^6.3@dev"
- },
- "autoload": {
- "classmap": [
- "app/commands",
- "app/controllers",
- "app/libraries",
- "app/models",
- "app/database/migrations",
- "app/database/seeds",
- "app/tests/TestCase.php"
- ]
- },
- "scripts": {
- "post-install-cmd": [
- "php artisan optimize"
- ],
- "pre-update-cmd": [
- "php artisan clear-compiled"
- ],
- "post-update-cmd": [
- "php artisan optimize"
- ],
- "post-create-project-cmd": [
- "php artisan key:generate"
- ]
- },
- "config": {
- "preferred-install": "dist"
- },
- "minimum-stability": "dev"
- }
|