Files
awslabs_aws-crt-php/composer.json
T
Justin Boswell c30c1486fe Organized modules, added indirection for FFI vs extension loading (#10)
* mv src -> ext, lib -> src to be more in line with PHP module expectations

* Fixed dependency for ffi test

* Fixed path in format-check to C source

* CRT will now try the extension first, then FFI
2021-02-16 10:31:42 -08:00

34 lines
641 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": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"src/tests/"
]
},
"scripts": {
"test": "phpunit src/tests"
},
"license": "Apache-2.0",
"authors": [
{
"name": "AWS Common Runtime Team",
"email": "[email protected]"
}
]
}