@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Improve documentation for the `src/extensions` dir

Test Plan: Read the file, compare with PhutilBootLoader.php to see how extensions are processed.

Reviewers: O1 Blessed Committers, aklapper

Reviewed By: O1 Blessed Committers, aklapper

Subscribers: aklapper, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26607

Pppery dcfa4a29 6249c8bd

+8
+8
src/extensions/README
··· 1 1 You can add `.php` files to this directory to load classes and functions defined 2 2 in them at runtime. 3 + 4 + Any such files are loaded automatically and unconditionally, without the need 5 + to `arc liberate` first to update a library map. You can also extend Phorge by 6 + creating a separate library, storing it somewhere else, and adding it to the 7 + `load-libraries` key in configuration. 8 + 9 + See more documentation on how extensions work at 10 + https://we.phorge.it/w/docs/extensions/install/