composer.json 697 Bytes
Newer Older
1
{
Brian Kiewel committed
2 3 4
	"name": "laravel/laravel",
	"description": "The Laravel Framework.",
	"keywords": ["framework", "laravel"],
5
	"license": "MIT",
6
	"require": {
7
		"laravel/framework": "4.1.*"
8 9 10 11 12 13 14
	},
	"autoload": {
		"classmap": [
			"app/commands",
			"app/controllers",
			"app/models",
			"app/database/migrations",
Taylor Otwell committed
15
			"app/database/seeds",
16 17 18
			"app/tests/TestCase.php"
		]
	},
19
	"scripts": {
20
		"post-install-cmd": [
21
			"php artisan clear-compiled",
22 23
			"php artisan optimize"
		],
24
		"post-update-cmd": [
Taylor Otwell committed
25
			"php artisan clear-compiled",
26
			"php artisan optimize"
27 28 29
		],
		"post-create-project-cmd": [
			"php artisan key:generate"
30
		]
31
	},
32 33 34
	"config": {
		"preferred-install": "dist"
	},
35
	"minimum-stability": "stable"
36
}