Skip to content

Commit 7ff2f56

Browse files
authored
DXE-4874 Merge pull request #11 from akamai/release/2.0.1
Release 2.0.1
2 parents 65fc3e0 + 0ca1cd7 commit 7ff2f56

File tree

10 files changed

+565
-742
lines changed

10 files changed

+565
-742
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2.0.1
2+
---
3+
[24 Mar, 2025]
4+
* Upgraded `symfony/process` to 6.4.15 to resolve vulnerabilities
5+
* Updated various dependencies
6+
* Added support for test coverage
7+
18
2.0.0
29
---
310
[17 Oct, 2022]

box.json.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"alias": "akamai-open-edgegrid-auth.phar",
32
"algorithm": "SHA512",
43
"directories": [
54
"src",

build/phar/stub.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
if (class_exists('Phar')) {
3+
Phar::mapPhar('akamai-open-edgegrid-auth.phar');
4+
}
5+
6+
Phar::interceptFileFuncs();
7+
require_once 'phar://' .__FILE__. '/vendor/autoload.php';
8+
__HALT_COMPILER(); ?>

build/test.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
include 'akamai-open-edgegrid-auth.phar';
3+
$auth = \Akamai\Open\EdgeGrid\Authentication::createFromEdgeRcFile('default', './tests/edgerc/.edgerc');
4+
var_dump($auth);

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"phpspec/prophecy": "~1.0",
2020
"squizlabs/php_codesniffer": "^3.7",
2121
"friendsofphp/php-cs-fixer": "^3.9",
22-
"humbug/box": ">=4.1.0"
22+
"humbug/box": ">=4.3.8"
2323
},
2424
"suggest": {
2525
"akamai-open/edgegrid-client": "Provide a fully featured HTTP client & CLI pre-configured with EdgeGrid authentication. (PHP 8.1+)"

0 commit comments

Comments
 (0)