graphql-php/composer.json
Jeremiah VALERIE 4867c4ceca Add ext-mbstring missing requirement
This fix "PHP Fatal error:  Uncaught Error: Call to undefined function GraphQL\Language\mb_strlen()"
2016-11-12 09:59:05 +01:00

34 lines
729 B
JSON

{
"name": "webonyx/graphql-php",
"description": "A PHP port of GraphQL reference implementation",
"type": "library",
"license": "BSD",
"homepage": "https://github.com/webonyx/graphql-php",
"keywords": [
"graphql",
"API"
],
"require": {
"php": ">=5.4,<8.0-DEV",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphQL\\Tests\\": "tests/",
"GraphQL\\Benchmarks\\": "benchmarks/",
"GraphQL\\Examples\\Blog\\": "examples/01-blog/Blog/"
}
}
}