Files
awslabs_aws-crt-php/composer.json
T
Justin Boswell f6f9a6b349 Restored FFI to working order (#28)
* Restored FFI to working order

* Disabled incompatible tests, fixed string conversion

* Use extension_loaded instead of checking PHP version

* Added better checks for FFI

* Do not build FFI deps if no FFI is present
2021-06-16 11:26:31 -07:00

38 lines
976 B
JSON

{
"name": "aws/aws-crt-php",
"homepage": "http://aws.amazon.com/sdkforphp",
"description": "AWS Common Runtime for PHP",
"keywords": ["aws","amazon","sdk","crt"],
"type": "library",
"authors": [
{
"name": "AWS SDK Common Runtime Team",
"email": "[email protected]"
}
],
"config": {
"platform": {"php": "5.6"}
},
"minimum-stability": "alpha",
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit":"^4.8.35|^5.4.3"
},
"conflict": {
"phpunit/php-timer": ">=2"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"test": "@php -d extension=modules/awscrt.so vendor/bin/phpunit tests",
"test-extension": "@php -d extension=modules/awscrt.so vendor/bin/phpunit tests",
"test-ffi": "@php vendor/bin/phpunit tests"
},
"license": "Apache-2.0"
}