mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Added test-ffi target, use it in CI * Added clang-format config, fixed RETURN_STRING API mismatch * Skip installing php and packages on the PHP docker images * Removed al2 job that was never going to work, and compiler tests * Fixed basic test for extension loading * Cleaned up lib structure, fixed tests * use test-ci target to conditionally test in GitHub * Use v0.8.1 of builder
37 lines
702 B
JSON
37 lines
702 B
JSON
{
|
|
"name": "aws/crt",
|
|
"description": "AWS Common Runtime for PHP",
|
|
"type": "library",
|
|
"require": {
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5"
|
|
},
|
|
"conflict": {
|
|
"phpunit/php-timer": ">=2"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"lib/"
|
|
],
|
|
"psr-4": {
|
|
"AWS\\": "lib/AWS"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"lib/tests/"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit lib/tests"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"authors": [
|
|
{
|
|
"name": "AWS Common Runtime Team",
|
|
"email": "[email protected]"
|
|
}
|
|
]
|
|
}
|