Files
awslabs_aws-crt-php/composer.json
T
Justin Boswell 9171857448 Updated CRT library, test process, EventLoopGroup API updates (#16)
* Updated to latest aws-crt-ffi, updated EventLoopGroup/options init

* Removed test-ci target, just use test for everything now

* Added event_loop_group API to CRT/stubs

* Removed headers (all generated) from format-check

* Added the ability to force extension vs FFI

* make test will now trigger composer run test/phpunit, and force tests with both FFI and extension

* Updated builder version, removed redundant php7 test run

* Removed type annotations that anger php5, limited backends on php5
2021-03-12 11:47:55 -08:00

40 lines
889 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": {
},
"require-dev": {
"phpunit/phpunit": "^5"
},
"conflict": {
"phpunit/php-timer": ">=2"
},
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"src/tests/"
]
},
"scripts": {
"test": "@php -d extension=modules/awscrt.so vendor/bin/phpunit src/tests"
},
"license": "Apache-2.0"
}