-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.54 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
{
"name": "newman/laravel-graphql-test-utils",
"description": "Laravel GraphQL test utilities package. Helps you to test your GraphQL queries & mutations easily.",
"keywords": [
"graphql",
"laravel",
"testing",
"tests",
"utils",
"rebing"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Edgars Neimanis",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0",
"illuminate/testing": "^11.0|^12.0"
},
"require-dev": {
"larastan/larastan": "^2.4|^3.0",
"laravel/pint": "^1.16",
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^10.0|^11.5"
},
"autoload": {
"psr-4": {
"Newman\\LaravelGraphQLTestUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Newman\\LaravelGraphQLTestUtils\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse --memory-limit=256M",
"lint": "pint --test",
"fix-style": "pint",
"test": "./vendor/bin/phpunit --colors=always",
"test-coverage": "php -dpcov.enabled=1 -dpcov.directory=src/ -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit --colors=always --coverage-text",
"test-coverage-html": "php -dpcov.enabled=1 -dpcov.directory=src/ -dpcov.exclude=\"~vendor~\" ./vendor/bin/phpunit --colors=always --coverage-html phpunit-coverage"
},
"extra": {
"laravel": {
"providers": [
"Newman\\LaravelGraphQLTestUtils\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}