-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated autoload path * upgraded dependencies
- Loading branch information
Showing
1 changed file
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
{ | ||
"name": "web64/laravel-cli-colors", | ||
"description": "Laravel package for generating CLI output with awesome colors!", | ||
"type": "library", | ||
"require": { | ||
"jakub-onderka/php-console-color": "^0.2.0" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Olav Hjertaker", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"autoload": { | ||
"psr-4": { | ||
"Web64\\Colors\\": "src/" | ||
} | ||
}, | ||
"extra":{ | ||
"laravel":{ | ||
"providers": [ | ||
"Web64\\Colors\\ColorsServiceProvider" | ||
], | ||
"aliases": { | ||
"Colors": "Web64\\Colors\\Facades\\Colors" | ||
} | ||
} | ||
"name": "web64/laravel-cli-colors", | ||
"description": "Laravel package for generating CLI output with awesome colors!", | ||
"type": "library", | ||
"require": { | ||
"php-parallel-lint/php-console-color": "^0.3" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Olav Hjertaker", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"autoload": { | ||
"psr-4": { | ||
"Web64\\Colors\\": "src/Colors" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Web64\\Colors\\ColorsServiceProvider" | ||
], | ||
"aliases": { | ||
"Colors": "Web64\\Colors\\Facades\\Colors" | ||
} | ||
} | ||
} | ||
} |