Initial commit with tests, and stuff.

This commit is contained in:
2018-06-08 13:02:36 +03:00
commit e8fdb5109d
18 changed files with 1181 additions and 0 deletions

50
composer.json Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "ivuorinen/bbcodeparser",
"description": "Parse your BBCode easy with this library.",
"keywords": ["bbcode", "parser", "laravel", "psr-1", "psr-2", "psr-4"],
"homepage": "https://github.com/ivuorinen/bbcodeparser",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ismo Vuorinen",
"email": "ismo@ivuorinen.net",
"homepage": "https://github.com/ivuorinen"
},
{
"name": "Joseph Landberg",
"email": "joseph.landberg@gmail.com",
"homepage": "https://github.com/golonka/"
}
],
"require": {
"php": ">=7"
},
"require-dev": {
"phpunit/phpunit": "~5",
"squizlabs/php_codesniffer": "~2",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"ivuorinen\\BBCode\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "ivuorinen\\BBCode\\Tests\\": "tests/" },
"classmap": [
"tests/"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"ivuorinen\\BBCode\\BBCodeParserServiceProvider"
],
"aliases": {
"BBCode": "ivuorinen\\BBCode\\Facades\\BBCodeParser"
}
}
}
}