-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "astrotomic/tmdb-sdk",
"description": "Interact with TMDB API.",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"homepage": "https://github.com/Astrotomic/tmdb-sdk",
"support": {
"issues": "https://github.com/Astrotomic/tmdb-sdk/issues",
"source": "https://github.com/Astrotomic/tmdb-sdk"
},
"require": {
"php": "^8.2",
"ext-json": "*",
"illuminate/collections": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/support": "^11.0",
"nesbot/carbon": "^2.31 || ^3.0",
"saloonphp/pagination-plugin": "^2.0",
"saloonphp/saloon": "^3.0"
},
"require-dev": {
"astrotomic/phpunit-assertions": "^0.11.0",
"laravel/pint": "^1.16.2",
"pestphp/pest": "^2.34.9",
"pestphp/pest-plugin-type-coverage": "^2.8",
"phpstan/phpstan": "^1.11.7",
"spatie/ray": "^1.41.2",
"vlucas/phpdotenv": "^5.6"
},
"suggest": {
"astrotomic/iso639": "Allows to retrieve additional data for ISO-639 responses.",
"league/iso3166": "Allows to retrieve additional data for ISO-3166 responses."
},
"autoload": {
"psr-4": {
"Astrotomic\\Tmdb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
}
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction",
"@composer thanks --ansi --no-interaction --quiet"
],
"fix": "@php vendor/bin/pint",
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"phpstan": "@php vendor/bin/phpstan analyse --memory-limit=2G",
"test": "@php -d memory_limit=-1 vendor/bin/pest",
"test-coverage": "XDEBUG_MODE=coverage @php -d memory_limit=-1 vendor/bin/pest --coverage-html=.coverage",
"thanks": "echo 'composer global require symfony/thanks'"
}
}