-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.36 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "mave/animalcrossing-is-fun",
"description": "Open source Animal Crossing checklist",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Mave",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Mave\\AnimalCrossingIsFun\\": "app/AnimalCrossingIsFun/",
"Mave\\AnimalCrossingIsFun\\Tests\\": "tests/AnimalCrossingIsFun/Tests/"
},
"files": [
"app/helpers.php"
]
},
"repositories": [
{
"url": "https://github.com/fabioflx/php-redis-client.git",
"type": "git"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-curl": "*",
"ext-calendar": "*",
"vlucas/phpdotenv": "^4.1",
"nyholm/psr7": "^1.2",
"nyholm/psr7-server": "^1.0.0",
"slim/slim": "^4.0",
"slim/twig-view": "^3.0",
"fabioflx/php-redis-client": "dev-master",
"league/oauth2-client": "^2.6",
"league/oauth2-google": "^4.0",
"rtheunissen/oauth2-reddit": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"scripts": {
"json-to-php": "php ./scripts/json-to-php.php data/*.json",
"safename-item": "php ./scripts/php-item-safename.php data/*.php",
"enrich-villager-data": "php ./scripts/enrich-villager-data.php data/villagers.php",
"translateable-items": "php ./scripts/translateable-items.php data/*.php"
}
}