forked from mll-lab/graphql-php-scalars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 901 Bytes
/
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
{
"name": "mll-lab/graphql-php-scalars",
"type": "library",
"description": "A collection of custom scalar types for usage with https://github.com/webonyx/graphql-php",
"keywords": [
"graphql",
"php"
],
"license": "MIT",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"egulias/email-validator": "^2.1.17",
"spatie/regex": "^1.4.1",
"thecodingmachine/safe": "^1.0.3",
"webonyx/graphql-php": "^0.13.8 || ^14.0.0"
},
"require-dev": {
"ext-json": "*",
"ergebnis/composer-normalize": "^2.5",
"phpstan/phpstan": "~0.12.31",
"phpunit/phpunit": "^8.5.3",
"thecodingmachine/phpstan-safe-rule": "^1.0.0"
},
"autoload": {
"psr-4": {
"MLL\\GraphQLScalars\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}