-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from damienalexandre/addComposer
Add composer.json file to easy installation in Composer projects
- Loading branch information
Showing
2 changed files
with
31 additions
and
8 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "ludosevilla/minipavi-cli", | ||
"type": "library", | ||
"description": "SDK for MiniPavi, Minitel to HTTP platform", | ||
"keywords": ["minitel"], | ||
"homepage": "https://www.minipavi.fr/", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Jean-arthur Silve", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MiniPavi\\": "" | ||
} | ||
} | ||
} |