initial commit

This commit is contained in:
ghost 2023-08-07 12:35:57 +03:00
parent 932676e236
commit f5b1beb51e
4 changed files with 117 additions and 0 deletions

17
composer.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "yggverse/parser",
"description": "Parser toolkit written on PHP",
"type": "library",
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": ">=10"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Yggverse\\Parser\\": "src/"
}
}
}