Skip to content

Commit

Permalink
Cleanup legacy code
Browse files Browse the repository at this point in the history
  • Loading branch information
Plancke committed May 22, 2019
1 parent 030d660 commit f3afdeb
Show file tree
Hide file tree
Showing 36 changed files with 815 additions and 913 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,4 @@ composer.phar
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
composer.lock

/tests/cache/

/.phpunit.*
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,4 @@ $player = $HypixelPHP->getPlayer([FetchParams::PLAYER_BY_NAME => 'Plancke']);
if ($player instanceof Player) {
echo $player->getName();
}
```

## Old Version

You can find the old 1 file version in the [old branch](https://github.com/Plancke/hypixel-php/tree/old), this won't be updated and as such is most likely broken.
```
13 changes: 9 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@
"authors": [
{
"name": "Plancke",
"email": "pl@ncke.io",
"email": "admin@plancke.io",
"role": "Developer"
}
],
"keywords": [
"hypixel", "plancke", "api", "wrapper"
"hypixel",
"plancke",
"api",
"wrapper"
],
"support": {
"issues": "https://github.com/Plancke/hypixel-php/issues"
Expand All @@ -22,7 +25,8 @@
"ext-json": "*"
},
"suggest": {
"mongodb/mongodb": "^1.0.0"
"ext-mongodb": "^1.4.2",
"mongodb/mongodb": "^1.4.2"
},
"autoload": {
"psr-4": {
Expand All @@ -31,7 +35,8 @@
},
"require-dev": {
"phpunit/phpunit": "8.0.6",
"ext-mbstring": "*"
"ext-mongodb": "^1.4.2",
"mongodb/mongodb": "^1.4.2"
},
"autoload-dev": {
"psr-4": {
Expand Down
4 changes: 3 additions & 1 deletion resources/game_info/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
This contains some files that have data for gamemodes

It includes some of my custom data needed for generators/stats page on my website
It includes some of my custom data needed for generators/stats page on my website

This data format could change at any point but if it does, the project version will also change.
Loading

0 comments on commit f3afdeb

Please sign in to comment.