Add composer.json

This commit is contained in:
antonkomarev
2020-07-12 01:11:04 +03:00
parent 8a5e36dddc
commit 2cb2bbbd08
2 changed files with 25 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/vendor/

24
composer.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "komarev/github-profile-views-counter",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Anton Komarev",
"email": "anton@komarev.com"
}
],
"require": {
"php": "^7.4"
},
"autoload": {
"psr-4": {
"Komarev\\GitHubProfileViewsCounter\\": "src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable" : true
}