1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-04 02:14:06 +02:00

type hint all the things

This commit is contained in:
Robin Appelman 2020-11-28 23:37:02 +01:00
commit 3f9e613e77
34 changed files with 287 additions and 309 deletions

View file

@ -1,26 +1,28 @@
{
"require": {
"mikecao/flight": "1.3.8",
"vlucas/phpdotenv": "^1.1",
"ircmaxell/random-lib": "^1.1",
"ehesp/steam-login": "^1.2",
"koraktor/steam-condenser": "^1.3",
"guzzlehttp/guzzle": "^6.5",
"doctrine/dbal": "^2.12",
"ext-pdo": "*"
},
"autoload": {
"files": [
"vendor/koraktor/steam-condenser/lib/steam-condenser.php"
],
"psr-4": {
"Demostf\\API\\": "src/",
"Demostf\\API\\Test\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "9.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.57"
}
"require": {
"mikecao/flight": "1.3.8",
"vlucas/phpdotenv": "^1.1",
"ircmaxell/random-lib": "^1.1",
"ehesp/steam-login": "^1.2",
"koraktor/steam-condenser": "^1.3",
"guzzlehttp/guzzle": "^6.5",
"doctrine/dbal": "^2.12",
"ext-pdo": "*",
"ext-json": "*",
"ext-apcu": "*"
},
"autoload": {
"files": [
"vendor/koraktor/steam-condenser/lib/steam-condenser.php"
],
"psr-4": {
"Demostf\\API\\": "src/",
"Demostf\\API\\Test\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "9.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.57"
}
}