File tree Expand file tree Collapse file tree 7 files changed +17
-11
lines changed
Expand file tree Collapse file tree 7 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 11<?php
22/*
33Awstats Data File Parser / Merger / Generator
4- @version: 1.4.1
5- @date: 2020-01-20
4+ @version: 2.0
5+ @date: 2025-09-23
66@author: Aaron van Geffen
77@website: https://aaronweb.net/
88@license: BSD
Original file line number Diff line number Diff line change 11<?php
22/*
33Awstats Data File Parser / Merger / Generator
4- @version: 1.4.1
5- @date: 2020-01-20
4+ @version: 2.0
5+ @date: 2025-09-23
66@author: Aaron van Geffen
77@website: https://aaronweb.net/
88@license: BSD
Original file line number Diff line number Diff line change 11<?php
22/*
33Awstats Data File Parser / Merger / Generator
4- @version: 1.4.1
5- @date: 2020-01-20
4+ @version: 2.0
5+ @date: 2025-09-23
66@author: Aaron van Geffen
77@website: https://aaronweb.net/
88@license: BSD
Original file line number Diff line number Diff line change 11# AwstatsParser changelog
22
3+ ## version 2.0 (2025-09-23)
4+ * Sections are now processed as-needed, reducing memory requirements.
5+ * Fix package autoload path in example merge script (GitHub #4 ).
6+ * Fix merging http error sections with placeholder values (GitHub #5 ).
7+ * Deprecated: AwstatsFromFile is no longer used as an interface. Use AwstatsFile directly.
8+
39## version 1.4.1 (2020-01-20)
410* Change braces to brackets to address a PHP 7.4 deprecation warning.
511
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ This package contains a series of classes to help read and merge Awstats data fi
88
99The package contains three classes:
1010
11- * ` AwstatsFromFile ` , used to read existing Awstats statistics from file;
11+ * ` AwstatsFile ` , used to read existing Awstats statistics from file;
1212* ` AwstatsMerger ` , used to merges instances of ` AwstatsFile ` ;
13- * ` AwstatsFile ` , which is an abstract class used to generalise the two .
13+ * ` AwstatsFromFile ` , a deprecated interface class.
1414
1515
1616## Merging files
Original file line number Diff line number Diff line change 11<?php
22/*
33Awstats Data File Parser / Merger / Generator
4- @version: 1.4.1
5- @date: 2020-01-20
4+ @version: 2.0
5+ @date: 2025-09-23
66@author: Aaron van Geffen
77@website: https://aaronweb.net/
88@license: BSD
Original file line number Diff line number Diff line change 1414 }
1515 ],
1616 "require" : {
17- "php" : " >=5.3 .0"
17+ "php" : " >=8 .0"
1818 },
1919 "autoload" : {
2020 "classmap" : [" AwstatsParser/" ]
You can’t perform that action at this time.
0 commit comments