Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #27: implement support for TYPO3 v10 #28

Merged
merged 10 commits into from
Apr 25, 2020
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'uploadfolder' => false,
'createDirs' => '',
'clearCacheOnLoad' => false,
'version' => '8.1.1',
'version' => '10.0.0',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer if we could make this a minor release which keeps compatibility with v8.
As far as I can see only the Environment class is the "deal breaker" here, right?

Copy link
Contributor Author

@dmitryd dmitryd Nov 21, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My task is to make a v10 compatible code. I do not have time allocated for anything else, sorry. I can't work on yet another base. I also cannot test if this is compatible with v8 or not: also no time allocated to it.

'constraints' => [
'depends' => [
'typo3' => '8.7.19-10.999.999',
Expand Down
2 changes: 1 addition & 1 deletion ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ CREATE TABLE tx_openid_nonce_store (
PRIMARY KEY (uid),
UNIQUE KEY nonce (server_url(255),tstamp,salt),
KEY crdate (crdate)
) DEFAULT CHARSET = utf8 COLLATE utf8_general_ci ENGINE=InnoDB;
) ENGINE=InnoDB;
3 changes: 3 additions & 0 deletions lib/php-openid/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ We use only "Auth" directory from the library and include a copy of COPYING file
Current version of the library is 3.0.1
(git-checkout c59928322ce2508094473c76c2e1c5294f97e743; # from 2020-04-07)
Source: https://github.com/openid/php-openid

Additionally copied the following bugfix to this version: https://github.com/openid/php-openid/pull/140