Skip to content

Commit f059ade

Browse files
committed
chore: update actions
Signed-off-by: Elizabeth Danzberger <[email protected]>
1 parent 5bf617a commit f059ade

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+384
-5611
lines changed

.github/workflows/autoloader.yml

-43
This file was deleted.

.github/workflows/cypress-e2e.yml

+5
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ jobs:
101101
apc.enable_cli=on
102102
coverage: none
103103

104+
- name: Install composer dependencies
105+
working-directory: apps/richdocuments
106+
run: |
107+
composer install
108+
104109
- name: Set up Nextcloud
105110
env:
106111
DB_PORT: 4444

composer.json

+13-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@
66
"config": {
77
"platform": {
88
"php": "8.0"
9-
}
9+
},
10+
"allow-plugins": {
11+
"bamarni/composer-bin-plugin": true
12+
},
13+
"optimize-autoloader": true,
14+
"autoloader-suffix": "Richdocuments"
1015
},
1116
"require": {
1217
"ext-json": "*",
13-
"ext-simplexml": "*"
18+
"ext-simplexml": "*",
19+
"mikehaertl/php-pdftk": "^0.13.1"
1420
},
1521
"require-dev": {
1622
"roave/security-advisories": "dev-master",
@@ -37,6 +43,11 @@
3743
"cs:fix": "php-cs-fixer fix",
3844
"test:unit": "vendor/bin/phpunit -c tests/phpunit.xml"
3945
},
46+
"autoload" : {
47+
"psr-4": {
48+
"OCA\\Richdocuments\\": "./lib/"
49+
}
50+
},
4051
"autoload-dev": {
4152
"psr-4": {
4253
"OCP\\": "vendor/nextcloud/ocp/OCP"

0 commit comments

Comments
 (0)