aboutsummaryrefslogtreecommitdiffstats
path: root/lib/composer/autoload.php
Commit message (Collapse)AuthorAgeFilesLines
* feat(OCM-invites): Implementation of invitation flowMicke Nordin2025-06-121-4/+1
| | | | | | | | | | | | | | | This patchset: * implements the /invite-accepted endpoint * adds capabilities and inviteAceptDialog to the discovery * adds a FederatedInviteAcceptedEvent https://cs3org.github.io/OCM-API/docs.html?branch=v1.1.0&repo=OCM-API&user=cs3org#/paths/~1invite-accepted/post Co-authored-by: Anna <anna@nextcloud.com> Co-authored-by: Côme Chilliet <come.chilliet@nextcloud.com> Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Co-authored-by: Navid Shokri <navid.pdp11@gmail.com> Signed-off-by: Micke Nordin <kano@sunet.se>
* feat(login-flow-v2): Restrict allowed apps by user agent checkMisha M.-Kupriyanov2025-04-231-1/+4
| | | | | | | | | | | Enable via: ./occ config:system:set core.login_flow_v2.allowed_user_agents 0 --value '/Custom Foo Client/i' ./occ config:system:set core.login_flow_v2.allowed_user_agents 1 --value '/Custom Bar Client/i' if user agent string is unknown the template with "Access forbidden"-"Please use original client" will be displayed Signed-off-by: Misha M.-Kupriyanov <kupriyanov@strato.de>
* chore: update main autoloaderchore-check-for-composer-binDaniel Kesselberg2025-04-151-4/+1
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Update composer autoloaderCarl Schwan2022-11-221-2/+15
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Cleanup and compileJohn Molakvoæ2022-05-131-1/+1
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Fix mexitek/phpcolorsJohn Molakvoæ2022-04-261-0/+5
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Ship mexitek/phpcolorsJohn Molakvoæ2022-04-211-5/+0
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Fix an issue with the search backend updateCarl Schwan2022-04-141-0/+5
| | | | | | And update autoloader Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Update autoloaderRoeland Jago Douma2016-12-131-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update autoloaderRoeland Jago Douma2016-08-171-21/+0
|
* Update with robinJoas Schilling2016-07-211-0/+1
|
* Fix othersJoas Schilling2016-07-211-0/+20
|
* Use classmap to load core filesRoeland Jago Douma2016-07-181-19/+1
| | | | | | We can't use an authoritive classmap in the current state as it would kill app loading. However we can use a proper classmap for the normal core stuff.
* Update license headersLukas Reschke2016-05-261-1/+19
|
* Add composers default autoloader to coreRoeland Jago Douma2016-03-091-0/+7
This introduces the defacto standard PSR-4 autoloader from composer into core. This will allow proper PSR-4 naming of our classes. Since our original autoloader is still available we can slowly switch over classes to PSR-4.