-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
85 lines (85 loc) · 2.66 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
80
81
82
83
84
85
{
"name": "enjin/platform-fuel-tanks",
"description": "A package for integrating Fuel Tanks into the Enjin Platform.",
"keywords": [
"enjin",
"platform",
"enjin platform",
"enjin platform package",
"laravel"
],
"homepage": "https://github.com/enjin/platform-fuel-tanks",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Enjin",
"email": "support@enjin.io"
}
],
"require": {
"php": "^8.3",
"ext-bcmath": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"enjin/platform-core": "*",
"phrity/websocket": "^1.0",
"rebing/graphql-laravel": "^9.0",
"spatie/laravel-package-tools": "^1.0",
"spatie/laravel-ray": "^1.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.0",
"larastan/larastan": "^3.0",
"orchestra/testbench": "^9.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/php-code-coverage": "^11.0",
"phpunit/phpunit": "^11.0",
"rector/rector": "2.0.3",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Enjin\\Platform\\FuelTanks\\": "src",
"Enjin\\Platform\\FuelTanks\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Enjin\\Platform\\FuelTanks\\Tests\\": "tests"
},
"classmap": [
"src/GraphQL"
]
},
"scripts": {
"build-sr25519": "cd vendor/gmajor/sr25519-bindings/go && go build -buildmode=c-shared -o sr25519.so . && mv sr25519.so ../src/Crypto/sr25519.so",
"analyse": "vendor/bin/phpstan analyse",
"dry-fix": "vendor/bin/rector process --dry-run && vendor/bin/pint --test --config ./pint.json",
"fix": "vendor/bin/rector process && vendor/bin/pint --config ./pint.json",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html ../../temp/coverage",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Enjin\\Platform\\FuelTanks\\FuelTanksServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}