-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
77 lines (77 loc) · 2.38 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
{
"name": "astrotomic/laravel-tmdb",
"description": "Interact with TMDB data in your Laravel application.",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "gummibeer@astrotomic.info",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"homepage": "https://github.com/Astrotomic/laravel-tmdb",
"support": {
"issues": "https://github.com/Astrotomic/laravel-tmdb/issues"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/database": "^10.0 || ^11.0",
"illuminate/http": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"nesbot/carbon": "^2.31",
"spatie/laravel-translatable": "^6.0"
},
"require-dev": {
"astrotomic/phpunit-assertions": "^0.11",
"infection/infection": "^0.27.10",
"laravel/pint": "^1.14",
"orchestra/testbench": "^8.0 || ^9.0",
"pestphp/pest": "^2.34",
"pestphp/pest-plugin-laravel": "^2.3"
},
"autoload": {
"psr-4": {
"Astrotomic\\Tmdb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"infection/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 4,
"indent-style": "space"
},
"laravel": {
"providers": [
"Astrotomic\\Tmdb\\TmdbServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": [
"@composer normalize --ansi --no-interaction --quiet",
"@composer validate --strict --ansi --no-interaction",
"@composer thanks --ansi --no-interaction --quiet"
],
"fix": "vendor/bin/pint",
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"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'"
}
}