Install composer packages
This commit is contained in:
parent
2c30886738
commit
9ad0bca632
4 changed files with 1275 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/vendor/
|
||||
8
.idea/.gitignore
vendored
Normal file
8
.idea/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
23
composer.json
Normal file
23
composer.json
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"name": "feddev/lemmy-poster",
|
||||
"description": "Lemmy Article Poster",
|
||||
"type": "project",
|
||||
"require": {
|
||||
"guzzlehttp/guzzle": "8.0.x-dev",
|
||||
"monolog/monolog": "3.x-dev",
|
||||
"vlucas/phpdotenv": "5.6.x-dev"
|
||||
},
|
||||
"license": "GPL-3.0-only",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Myrmidex\\LemmyPoster\\": "src/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "myrmidex",
|
||||
"email": "myrmidex@myrmidex.net"
|
||||
}
|
||||
],
|
||||
"minimum-stability": "dev"
|
||||
}
|
||||
1243
composer.lock
generated
Normal file
1243
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue