mirror of
https://github.com/YGGverse/gemtext-php.git
synced 2026-03-31 09:45:33 +00:00
init composer
This commit is contained in:
parent
9a84bb9d69
commit
63d810b9fe
3 changed files with 31 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/vendor/
|
||||
/composer.lock
|
||||
11
README.md
11
README.md
|
|
@ -1,2 +1,11 @@
|
|||
# gemtext-php
|
||||
PHP 8 library for text/gemini
|
||||
|
||||
PHP 8 library for `text/gemini`
|
||||
|
||||
This library is lightweight replacement to [gemini-php](https://github.com/YGGverse/gemini-php)
|
||||
|
||||
## Install
|
||||
|
||||
``` bash
|
||||
composer require yggverse/gemtext
|
||||
```
|
||||
19
composer.json
Normal file
19
composer.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "yggverse/gemtext",
|
||||
"description": "PHP 8 library for text/gemini",
|
||||
"keywords": [ "yggverse", "gemini", "gemtext", "text/gemini", "parser" ],
|
||||
"homepage": "https://github.com/yggverse/gemtext",
|
||||
"type": "library",
|
||||
"license": "MIT",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Yggverse\\Gemtext\\": "src/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "YGGverse"
|
||||
}
|
||||
],
|
||||
"require": {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue