forked from elastic/app-search-php
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update platform requirements to allow PHP 8
- Loading branch information
Chris Penny
committed
Jun 12, 2022
1 parent
1b8a861
commit 4d44d7f
Showing
2 changed files
with
27 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,37 @@ | ||
{ | ||
"name" : "elastic/app-search", | ||
"description" : "Elastic App Search Official PHP Client", | ||
"homepage": "https://github.com/elastic/app-search-php", | ||
"keywords" : [ | ||
"name": "silverstripe-terraformers/app-search-php-8", | ||
"description": "Elastic App Search PHP Client", | ||
"keywords": [ | ||
"search", | ||
"client", | ||
"elastic", | ||
"php" | ||
], | ||
"license" : "Apache-2.0", | ||
"type" : "library", | ||
"authors" : [ | ||
{"name" : "Aurélien FOUCRET", "email": "[email protected]"} | ||
"license": "Apache-2.0", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name": "Aurélien FOUCRET", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require" : { | ||
"php" : "^5.6|^7.0", | ||
"elastic/openapi-codegen" : "^1.0.4", | ||
"psr/log" : "^1.0." | ||
"require": { | ||
"php": ">=7.0", | ||
"silverstripe-terraformers/openapi-codegen-php-8": "dev-master", | ||
"psr/log": "^1.0." | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "^5.6.0|^6.3.0", | ||
"squizlabs/php_codesniffer" : "^3.4.0", | ||
"symfony/yaml" : "*", | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.6.0|^6.3.0", | ||
"squizlabs/php_codesniffer": "^3.4.0", | ||
"symfony/yaml": "*", | ||
"friendsofphp/php-cs-fixer": "^2.14", | ||
"overtrue/phplint": "^1.1" | ||
}, | ||
"autoload" : { | ||
"psr-4" : { | ||
"Elastic\\AppSearch\\Client\\" : "" | ||
"autoload": { | ||
"psr-4": { | ||
"Elastic\\AppSearch\\Client\\": "" | ||
}, | ||
"exclude-from-classmap" : [ | ||
"exclude-from-classmap": [ | ||
"/Tests/" | ||
] | ||
} | ||
|