forked from buonzz/composer-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
small modifications in the composer.json
- Loading branch information
mark
authored and
mark
committed
Aug 11, 2017
1 parent
b8c5dd7
commit 02c1a7a
Showing
1 changed file
with
13 additions
and
4 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,21 +1,30 @@ | ||
{ | ||
"name": "tetrode/composer-library-template", | ||
"description": "Boilerplate package for creating other packages.", | ||
"keywords": ["template", "composer", "package"], | ||
"keywords": [ | ||
"template", | ||
"composer", | ||
"package" | ||
], | ||
"version": "1.0.3", | ||
"license": "DBAD", | ||
"authors": [ | ||
{ | ||
"name": "Darwin Biler", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Mark Tetrode", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"type": "project", | ||
"require": { | ||
"php": ">=5.4" | ||
"php": ">=5.4" | ||
}, | ||
"require-dev": { | ||
"require-dev": { | ||
}, | ||
"autoload": { | ||
"autoload": { | ||
"psr-4": { | ||
"Buonzz\\Template\\": "src/" | ||
} | ||
|