1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 05:02:40 +00:00
Commit graph

65 commits

Author SHA1 Message Date
J. King
2d7b2dde39 Fix-up laminas-xml and docopt
Now there's only Phony, which will be replaced with Phake.
2024-12-15 21:53:20 -05:00
J. King
e8be7d0f38 Address our own deprecations in PHP 8.4 2024-12-15 16:31:57 -05:00
J. King
e647d79e1e Update dependencies 2024-01-05 09:17:08 -05:00
J. King
d9b90390e7 Update style rules 2023-06-17 11:09:03 -04:00
J. King
59a9329032 Upgrade dependencies where possible with PHP 7.3 2023-03-24 10:28:20 -04:00
J. King
711f87aad8 Housekeeping
- Update Docopt
- Switch toin-house Picofeed branch for now
- Update composer-bin
- Update php-cs-fixer

Daux has been left as-is for now even though we're using an old version
2023-03-22 22:57:58 -04:00
J. King
0a8d19d37d Require PHP 7.3
This addresses the last of the deprecation warnings in PHP 8.2
2023-01-28 12:43:42 -05:00
J. King
0d6f8d2921 Avoid most deprecation warnings
The Feed class sets dynamic properties on Picofeed classes; this will
need to be completely rewritten. Version 1.2 of the Laminas XML class
also uses a deprecated function, but upgrading it to 1.3 will require
PHP 7.3.
2023-01-27 15:33:34 -05:00
J. King
92b1a840a1 Support PHP 8.2 properly 2023-01-24 15:12:21 -05:00
J. King
560d4db139 Remove Diactoros in favour of Guzzle PSR-7
For now this only adds convenience wrappers around Guzzle to somewhat
emulate Diactoros (albeit with a different API). Code and tests will be
adjusted in due course.
2022-08-04 09:26:17 -04:00
J. King
2557c22410 Update dependencies 2022-06-22 15:33:17 -04:00
J. King
4ca7b65a65 Update dependencies 2022-06-09 21:21:17 -04:00
J. King
4d37ae30ae Update dependencies
Addresses a Guzzle vulnerability, though it does not affect The Arsse
2022-06-05 21:38:08 -04:00
J. King
59358ec35b More PHP 7 fixes 2022-04-30 17:11:18 -04:00
J. King
f24ec8b00b Address security vulnerability in Guzzle's PSR-7
implementation, used by PicoFeed
2022-04-04 13:40:39 -04:00
J. King
3a219a591d Update dependencies 2022-01-14 16:27:01 -05:00
J. King
3c884f521b Update dependencies 2021-10-29 14:31:23 -04:00
J. King
c9a2393a4e Note requirement for filter extension 2021-07-05 20:57:05 -04:00
J. King
822158d1bd Update dependencies 2021-07-05 20:57:05 -04:00
J. KIng
b7909d7cd3 Downgrade tool dependencies for Ubuntu 2021-05-21 15:13:23 -04:00
J. King
3537e74d49 Update dependencies 2021-05-21 12:11:50 -04:00
J. King
114dcc568f Update dependencies 2021-04-14 09:50:25 -04:00
J. King
9b369d902f Update tooling for PHP 8 2021-02-25 14:49:17 -05:00
J. King
a0d563e468 Update dependencies 2021-02-06 21:48:27 -05:00
J. King
cc648e1c3a Update tooling 2020-12-28 11:42:36 -05:00
J. King
8c059773bb Update tooling 2020-11-30 10:51:39 -05:00
J. King
6520ed38fb Update dependencies 2020-10-26 14:44:54 -04:00
J. King
6ee7ca4aa4 Update PicoFeed to latest release version 2020-09-15 08:45:49 -04:00
J. King
e75d15e552 Update dependencies 2020-09-09 10:59:28 -04:00
J. King
1d514e4739 Remove forked picofeed repository 2020-02-16 17:37:13 -05:00
J. King
49d003082d Fix problems with nicolus/picofeed
This involved multiple fixes to Picofeed itself, not all of which have
been merged upstream yet
2020-01-23 17:07:20 -05:00
J. King
e583ffea67 Start on integrating well-maintained picofeed fork
Picofeed configuration does not seem to get passed to Guzzle.
2020-01-21 08:42:38 -05:00
J. King
2fa2799b64 Require PHP 7.1 in Composer
In reality we have unwittingly required PHP 7.1 for some time
2020-01-20 00:34:02 -05:00
J. King
5d70f9fc11 Update dependencies 2019-10-11 12:02:22 -04:00
J. King
2aa16f3405 Merge branch 'fever' into opml 2019-07-24 14:04:04 -04:00
J. King
61abf7ee7c Upgrade to Diactoros 2.x 2019-04-09 16:15:36 -04:00
J. King
17fd909335 Add DOM extension as a direct dependency
Previously it was already a dependency of PicoFeed,
so there's effectively no change
2019-03-29 10:15:30 -04:00
J. King
bc8d443d84 Change PicoFeed dependency to a maintained variant 2019-01-23 12:36:43 -05:00
J. King
0be9dcb5a8 Update dependencies 2018-10-26 16:27:18 -04:00
J. King
9eadd602bd Replace Response objects with PSR-7 response messages; improves #53
While the test suite passes, this commit yields a broken server: replacing ad hoc request objectss with PSR-7 ones is still required, as is emission of PSR-7 responses. Both will come in subsequent commits, with tests

Diactoros was chosen specifically because it includes facilities for emitting responses, something which is awkward to test. The end of this refactoring should see both the Response and Request classes disappear, and the general REST class fully covered (as well as any speculative additions to AbstractHanlder).
2018-01-03 23:13:08 -05:00
J. King
4bc3398157 Use Robo for programming task execution
The plan had originally been to use Bldr, but Bldr's features were not particularly compelling, and it has not been maintained recently. By contrast Robo has very useful features while still meeting my needs.

In addition to migrating the build process, the current Robo file also runs unit tests, with or without coverage reporting.

Fixes #116; improves #113
2017-12-08 14:37:49 -05:00
J. King
c8f012c5fc Add Composer description 2017-12-07 17:33:45 -05:00
J. King
e6607453bc Disentangle Composer dev dependencies 2017-12-07 15:09:03 -05:00
J. King
c79443fade Remove dependence on phpseclib 2017-11-29 23:38:34 -05:00
J. King
6c34bf3c9c Update dependencies 2017-11-29 22:36:55 -05:00
J. King
6b1cd3816d Add warnings for slow tests in PHPUnit
This should help in fixing slow tests down the road.
2017-11-08 11:31:44 -05:00
J. King
8c6c49d588 Merge changes from master 2017-10-19 22:58:42 -04:00
J. King
474d32e54f Preliminary implementation of TTRSS sessions (needs tests; may not work) 2017-09-16 19:57:33 -04:00
J. King
1c4dd9cf7f Add a basic build system 2017-08-29 14:58:06 -04:00
J. King
28201ba573 Experiment with php-cs-fixer 2017-08-29 09:23:53 -04:00