mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Added composer config, added IO/error tests using phpunit * Added ApiGen doc comments * Added test to ensure last_error is not set from loading up the CRT
33 lines
639 B
JSON
33 lines
639 B
JSON
{
|
|
"name": "aws/awscrt",
|
|
"description": "AWS Common Runtime for PHP",
|
|
"type": "library",
|
|
"require": {
|
|
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5"
|
|
},
|
|
"conflict": {
|
|
"phpunit/php-timer": ">=2"
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"lib/"
|
|
]
|
|
},
|
|
"autoload": {
|
|
"files": ["lib/preload.php"]
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit --bootstrap lib/lib.php"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"authors": [
|
|
{
|
|
"name": "AWS Common Runtime Team",
|
|
"email": "[email protected]"
|
|
}
|
|
]
|
|
}
|