1
0
mirror of https://github.com/Rogiel/star-map synced 2025-12-06 07:12:51 +00:00

Initial commit

This commit is contained in:
2016-07-24 00:04:54 -03:00
commit 3e0132c96e
7 changed files with 978 additions and 0 deletions

30
composer.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "rogiel/star-map",
"type": "library",
"description": "A StarCraft II map parser in PHP",
"keywords": ["StarCraft II", "Map parsing", "Gaming", "Blizzard"],
"homepage": "https://rogiel.com/portfolio/star-map",
"license": "BSD-2.0",
"authors": [{
"name": "Rogiel Sulzbach",
"email": "rogiel@rogiel.com",
"homepage": "https://rogiel.com"
}],
"autoload": {
"psr-4": {
"Rogiel\\StarMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rogiel\\StarMap\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.5",
"rogiel/mpq": "^0.2.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
}
}