From 505f445f99678b845669c87c678378af7734a089 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 29 Aug 2013 08:33:24 +0200 Subject: [PATCH] Add missing license information in composer.json The license information was missing from the composer.json file. This information is quite important as it is displayed on Packagist and used by automated tools (like http://insight.sensiolabs.com/ for instance) to check compatibility of your project dependencies. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 0162a474..1ead3fc9 100644 --- a/composer.json +++ b/composer.json @@ -2,6 +2,7 @@ "name": "laravel/laravel", "description": "The Laravel Framework.", "keywords": ["framework", "laravel"], + "license": "MIT", "require": { "laravel/framework": "4.0.*" },