mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-18 01:57:13 +00:00
* Added awscrt_version() and test for it * Added builder.json for CI * Added github actions * Added format-check.sh * Force php5.6 on ubuntu * Updated submodules
16 lines
264 B
PHP
16 lines
264 B
PHP
--TEST--
|
|
Version: Simple function call
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(dirname(__FILE__) . '/skipif.inc');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once(dirname(__FILE__) . '/common.inc');
|
|
|
|
echo awscrt_version();
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
1.0.0-dev
|