-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"name": "ecodev/graphql-upload",
"description": "A middleware to support file uploads in GraphQL",
"type": "library",
"keywords": ["api", "graphql", "upload", "multipart", "middleware"],
"scripts": {
"check": [
"php-cs-fixer fix --ansi --dry-run --diff",
"phpunit --color=always",
"phpstan analyse --ansi"
],
"fix": [
"php-cs-fixer fix --ansi"
]
},
"autoload": {
"psr-4": {
"GraphQL\\Upload\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GraphQLTests\\Upload\\": "tests"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"psr/http-server-middleware": "^1.0",
"webonyx/graphql-php": "^15.0"
},
"license": "MIT",
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"laminas/laminas-diactoros": "@stable",
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "@stable"
}
}