-
Notifications
You must be signed in to change notification settings - Fork 49
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
Convert autoloading to PSR-4 and use composer's autoload #52
base: master
Are you sure you want to change the base?
Conversation
AFAIK, PDF rendering had been retired for practical purposes many years ago. I don't see much point in reviving it. I'm slightly concerned about a PHP 8.0 requirement. Is our build machine on that version already? |
The only reason why I bumped it to PHP 8 was because of the abstract folder name which can't be used in a namespace before PHP 8, renaming this folder should do the trick. I'll do that when I get back to this because I was more concerned with getting this running first. |
Are there any objections to merge this? |
There's none from my side, of course :) I only have just one issue: it would be nice if my other PR could be merged in advance, so that conflicts are avoided |
Am I correct in understanding that in order to render docs after this PR, we'd have to run some |
Just |
This requires to bump to PHP 8.0 so that 'Abstract' can be used in a namespace This might give us better IDE support and better ways to setup testing...
Command used: php render.php --docbook ../base/.manual.xml --package PHP --format xhtml
Turns out we need the php-src test-runner....
This allows to drop the version back down to PHP 5.6 (due to 'use function')
|
||
<div class="classsynopsisinfo"> | ||
<span class="ooclass"> | ||
<strong class="classname">SplStack</strong> | ||
<span class="modifier">class</span> <strong class="classname"><strong class="classname">SplStack</strong></strong> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kocsismate seems #50 inserts a redundant strong tag (and possibly whitespace)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll fix it asap
What is the benefit of using Composer? I think there was a discussion about using Composer in the past but I was not part of it. Can someone summarize why do we need Composer in PHD? If we don't need composer then we can use the built-in autoloader. But I am generally in favor of moving from PSR-0 to PSR-4 |
Mainly because we need testing, and the current tests depend on the php-src test runner, which is far from ideal as there is no easy way to pull it in for CI, and the two reasonable options I see is to either make php-src's test runner a separate repo and a project that we can pull in via Composer, or migrate to PHPUnit which we need to pull in via Composer. Composer is the de facto package manager in PHP and using it seems far from controversial. Moreover, it could allow us to pull in some packages to improve the codebase, like a DI container. If the issue of running a script is on the infra side we could add the |
So that was my next question. If we merge this, won't the nightly job on php.net fail due to missing |
Ok. Then I maintain my objection. If this PR gets merged as-is, someone is going to have go through all of the "documentation", which is spread far and wide, to change the "how to use PhD" instructions. Also, someone is going to have to install composer, make sure it keeps up-to-date, change build steps, etc. on at least the two php.net machines that are building the docs. Back to problems that can be fixed today: rendering the docs from this PR has a few problems...
For example (showing both of these problems):
I also tried (because my memory is like a sieve these days)
How thoroughly have these changes been exercised / tested? Because basic commands like above should not be failing. |
So this issue can be by-passed by adding the
Obviously the testing is lacking because our test suite is lacking, so if you remember a list of commands that should work (or can point me to where to find them) I can manually test them. But thanks for spotting these issues. |
In the current state, yes. I just pulled the PR to my machine and it lit up in red... so I think I am missing some commits. I'd much rather see this PR split into smaller chunks. First, move from PSR-0 to PSR-4 and make sure that everything still works. Then if people have no objections to changing the build tools, we can implement Composer autoloading. I also agree that we should probably remove some of this functionality before we attempt larger refactoring like this, as there's no point in maintaining functionality that is not in use. |
I'm not sure there is much point in changing the autoloading standard if it's not to use the Composer one, this PR is basically just this move to PSR-4, and the issues causes by function defs is because of the namespace requirements of PSR-4.
This can be done now as a separate PR. |
@salathe I think I've fixed all of the issues and concerns, can I get your opinion on this again? |
Wouldn't having vendor/ pre-installed imply that one must use a certain PHP version? |
AFAIK, no, as long as the PHP version requirement is satisfied. |
highlight_string() does not throw and even if it did it would throw an Exception which exists
This requires to bump to PHP 8.0 so that 'Abstract' can be used in a namespace
This might give us better IDE support and better ways to setup testing...
I tried to test this by running it but I can't figure out which command I am meant to enter so I'm hitting issues with trying to render PDF which is expecting the Haru extension to be loaded.... which has been abandoned for ages.
For reference the command I entered is:
php render.php -d ../base/.manual.xml -P PHP