-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.3 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
{
"name": "slatyo/laravel-pokemontcg",
"description": "A wrapper for the pokemontcg.io API",
"keywords": [
"slatyo",
"laravel-pokemontcg"
],
"homepage": "https://github.com/slatyo/laravel-pokemontcg",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Daniel Henze",
"email": "daniel.henze@outlook.com"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/support": "^8.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^0.7.15",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Slatyo\\LaravelPokemontcg\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slatyo\\LaravelPokemontcg\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/testbench package:test",
"stan": "vendor/bin/phpstan analyse",
"stan-2g": "vendor/bin/phpstan analyse --memory-limit=2G",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-clover=\"build/clover.xml\""
],
"test:coverage-html": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-html=\"build\""
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Slatyo\\LaravelPokemontcg\\LaravelPokemontcgServiceProvider"
],
"aliases": {
"LaravelPokemontcg": "Slatyo\\LaravelPokemontcg\\Facades\\Pokemontcg",
"PokemontcgCard": "Slatyo\\LaravelPokemontcg\\Facades\\Card",
"PokemontcgRarity": "Slatyo\\LaravelPokemontcg\\Facades\\Rarity",
"PokemontcgSet": "Slatyo\\LaravelPokemontcg\\Facades\\Set",
"PokemontcgSubtype": "Slatyo\\LaravelPokemontcg\\Facades\\Subtype",
"PokemontcgSupertype": "Slatyo\\LaravelPokemontcg\\Facades\\Supertype",
"PokemontcgType": "Slatyo\\LaravelPokemontcg\\Facades\\Type"
}
}
}
}