OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
aws-ses
/
vendor
/
aws
/
aws-sdk-php
/
build
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
Burgomaster.php
13.48 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
ClassAnnotationUpdater.php
3.3 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
ClientAnnotator.php
4.57 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
JsonCompiler.php
2.48 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
PhpFileLinterTrait.php
1.44 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
ServiceBuilder.php
1.85 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
annotate-client-locator.php
1.04 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
annotate-clients.php
2.74 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
aws-clear-cache.php
91 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
build-manifest.php
3.57 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
build-redirect-map.php
343 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
build-service.php
1015 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📁
changelog
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
compile-json.php
447 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📁
docs
-
01/07/2025 12:10:29 PM
rwxr-xr-x
📄
docs.php
1.72 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
gh-release.php
6.01 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
normalize-docs-files.php
7.74 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
option-docs.php
1.21 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
packager.php
2.2 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
phar-test-runner.php
161 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
remove-method-annotations.php
1.4 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
test-phar.php
1.05 KB
05/19/2025 10:07:21 AM
rw-r--r--
Editing: test-phar.php
Close
<?php require __DIR__ . '/artifacts/aws.phar'; $conf = [ 'credentials' => ['key' => 'foo', 'secret' => 'bar'], 'region' => 'us-west-2', 'version' => 'latest' ]; // Ensure that a client can be created. $s3 = new Aws\S3\S3Client($conf); // Ensure that waiters can be found. $s3->getPaginator('ListObjects'); // Legacy factory instantiation. Aws\DynamoDb\DynamoDbClient::factory($conf); // JMESPath autoloader \JmesPath\search('foo', ['foo' => 'bar']); // React autoloader $checks = [ 'JmesPath\\search', 'Aws\\dir_iterator', ]; foreach ($checks as $check) { if (!function_exists($check)) { echo $check . ' not found'; exit(1); } } $classMethodChecks = [ 'GuzzleHttp\\Promise\\Utils' => 'inspect', 'GuzzleHttp\\Psr7\\Utils' => 'streamFor', ]; foreach ($classMethodChecks as $class => $method) { if (!method_exists($class, $method) ) { echo $class . '::' . $method . ' not found'; exit(1); } } echo 'Version=' . Aws\Sdk::VERSION;