Skip to content

Commit

Permalink
Merge pull request #100 from mattheworres/morres/2022Updates
Browse files Browse the repository at this point in the history
2022 Updates
  • Loading branch information
mattheworres authored Sep 3, 2022
2 parents 2022a9b + 7abc0cc commit 73e3150
Show file tree
Hide file tree
Showing 6 changed files with 2,080 additions and 810 deletions.
20 changes: 15 additions & 5 deletions api/Domain/Repositories/DraftDataRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function __construct(Application $app) {
"MLB" => "Baseball (MLB)",
"NBA" => "Basketball (NBA)",
"NHL" => "Hockey (NHL)",
"S15" => "Rugby (Super Rugby)"
"S15" => "Rugby (Super 15)"
);

$this->styles = array(
Expand Down Expand Up @@ -145,6 +145,7 @@ public function __construct(Application $app) {
"ARI" => "Arizona Coyotes",
"PIT" => "Pittsburgh Penguins",
"SJS" => "San Jose Sharks",
"SEA" => "Seattle Kraken",
"STL" => "St Louis Blues",
"TAM" => "Tampa Bay Lightning",
"TOR" => "Toronto Maple Leafs",
Expand Down Expand Up @@ -198,13 +199,14 @@ public function __construct(Application $app) {
"SEA" => "Seattle Seahawks",
"TAM" => "Tampa Bay Buccaneers",
"TEN" => "Tennessee Titans",
"WAS" => "Washington Football Team"
"WAS" => "Washington Commanders"
);

$this->historical_nfl_teams = array_merge($this->nfl_teams, array(
"STL" => "St. Louis Rams",
"SDG" => "San Diego Chargers",
"OAK" => "Oakland Raiders"
"OAK" => "Oakland Raiders",
"WFT" => "Washington Football Team"
));

$this->nfl_positions = array(
Expand All @@ -231,7 +233,7 @@ public function __construct(Application $app) {
"CHC" => "Chicago Cubs",
"CWS" => "Chicago White Sox",
"CIN" => "Cincinnati Reds",
"CLE" => "Cleveland Indians",
"CLE" => "Cleveland Guardians",
"COL" => "Colorado Rockies",
"DET" => "Detroit Tigers",
"HOU" => "Houston Astros",
Expand All @@ -257,7 +259,7 @@ public function __construct(Application $app) {
);

$this->historical_mlb_teams = array_merge($this->mlb_teams, array(

"CLI" => "Cleveland Indians"
));

$this->mlb_positions = array(
Expand Down Expand Up @@ -330,13 +332,21 @@ public function __construct(Application $app) {
$this->super_rugby_teams = array(
"BLU" => "Blues",
"BRU" => "Brumbies",
"BUL" => "Bulls",
"CHE" => "Cheetahs",
"CHI" => "Chiefs",
"CRU" => "Crusaders",
"FOR" => "Force",
"HIG" => "Highlanders",
"HUR" => "Hurricanes",
"JAG" => "Jaguars",
"KIN" => "Kings",
"LIO" => "Lions",
"REB" => "Rebels",
"RED" => "Reds",
"SHA" => "Sharks",
"STO" => "Stormers",
"SUN" => "Sunwolves",
"WAR" => "Waratahs"
);

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"silex/silex": "~2.1",
"monolog/monolog": "~1.22",
"symfony/security": "~2.8.18",
"cnam/security-jwt-service-provider" : "~2.1.1",
"cnam/security-jwt-service-provider": "~2.1.1",
"doctrine/dbal": "~2.5.12",
"egulias/email-validator": "~2.1.7",
"phpmailer/phpmailer": "~6.0",
Expand All @@ -15,9 +15,9 @@
"require-dev": {
"monolog/monolog": "~1.13",
"phpunit/phpunit": "~7.0",
"phpmd/phpmd" : "@stable",
"phpmd/phpmd": "@stable",
"robmorgan/phinx": "^0.10.0",
"deployer/deployer": "~6.3.0",
"deployer/deployer": "~6.2.0",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
Expand All @@ -34,4 +34,4 @@
"PhpDraft\\Domain\\Validators\\": "api/Domain/Validators"
}
}
}
}
Loading

0 comments on commit 73e3150

Please sign in to comment.