mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-18 01:57:13 +00:00
* 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
34 lines
641 B
JSON
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]"
|
|
}
|
|
]
|
|
}
|