aboutsummaryrefslogtreecommitdiffstats
path: root/lib/composer
Commit message (Collapse)AuthorAgeFilesLines
* update autoloaderRobin Appelman2016-11-162-0/+8
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Added genertor helper & testsRoeland Jago Douma2016-11-032-0/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update autoloaderRoeland Jago Douma2016-11-032-0/+8
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Use new appstore APILukas Reschke2016-10-312-2/+10
| | | | | | This change introduces the new appstore API in Nextcloud. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Merge pull request #1800 from nextcloud/nextcloud-rich-object-stringsMorris Jobke2016-10-272-0/+6
|\ | | | | Nextcloud rich object strings
| * dump autoloaderMorris Jobke2016-10-242-0/+6
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Missing returns + autoloader fileLukas Reschke2016-10-252-0/+4
| | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | Update autoload files 🙈Morris Jobke2016-10-242-2/+2
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Add ContentSecurityPolicyNonceManagerLukas Reschke2016-10-242-0/+2
| | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | Get rid of very old oc:// stream wrapper (#26381)Vincent Petry2016-10-202-2/+0
|/
* update autoloading mapArthur Schiwon2016-10-072-0/+2
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Update autoloaderRoeland Jago Douma2016-10-052-0/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update autoloaderRoeland Jago Douma2016-10-052-0/+18
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove unused endpointJoas Schilling2016-09-302-2/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Update autoloader mapJoas Schilling2016-09-292-0/+6
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* dump autoload path for new classMorris Jobke2016-09-262-0/+2
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #1338 from nextcloud/fix-trashbin-errorsRoeland Jago Douma2016-09-132-0/+2
|\ | | | | Opening the trashbin causes errors in log for files without preview
| * Opening the trashbin causes errors in log for files without previewMorris Jobke2016-09-092-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * put a file without a generated preview in the trashbin (e.g. a *.docx file) * open the trashbin * following errors will show up in the nextcloud.log: - filesize(): stat failed for ... - fopen(...): failed to open stream: No such file or directory at ... - fread() expects parameter 1 to be resource, boolean given at ... - fclose() expects parameter 1 to be resource, boolean given at ... - imagecreatefromstring(): Empty string or invalid image at ... This is because the preview code tries to load an SVG image, which is obviously only text. The fix simply handles this before the loading happens and the web UI keeps showing the default mimetype icon.
* | add updated composer autoloader codeMorris Jobke2016-09-121-5/+7
|/
* more efficient querying of numeric storage idsRobin Appelman2016-09-072-0/+2
|
* Fix autoloaderRoeland Jago Douma2016-09-062-0/+6
|
* Update autoloaderRoeland Jago Douma2016-09-052-0/+2
|
* Autoloader updateRoeland Jago Douma2016-09-042-0/+2
|
* Autoloader updateRoeland Jago Douma2016-08-262-2/+0
|
* Merge pull request #969 from nextcloud/allow-to-validate-operationsLukas Reschke2016-08-212-0/+2
|\ | | | | Allow to validate operations
| * update composer listJoas Schilling2016-08-192-0/+2
| |
* | Update autoloaderRoeland Jago Douma2016-08-182-2/+0
|/
* Add ChangePasswordController to autoloaderRoeland Jago Douma2016-08-172-2/+2
|
* Update autoloaderRoeland Jago Douma2016-08-177-150/+78
|
* Update with robinJoas Schilling2016-07-216-0/+6
|
* Fix othersJoas Schilling2016-07-217-6/+138
|
* Use classmap to load core filesRoeland Jago Douma2016-07-187-125/+1496
| | | | | | 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-266-12/+112
|
* Move OC\Core and OC\Settings to composer autoloaderLukas Reschke2016-04-052-1/+3
|
* Allos OCP classes to be PSR-4 as wellRoeland Jago Douma2016-03-221-0/+1
| | | | | This adds the OCP namespace to the composer autoloader as well. This means that now we can use proper PSR-4 filenames in OCP.
* Add composers default autoloader to coreRoeland Jago Douma2016-03-098-0/+515
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.