Skip to content

Commit

Permalink
Merge branch 'development' into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvdlinde committed Aug 6, 2024
2 parents 0b2afc2 + 549e5bb commit 807e849
Show file tree
Hide file tree
Showing 160 changed files with 6,413 additions and 10,078 deletions.
32 changes: 19 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
"files.autoSave": "afterDelay",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"cSpell.words": [
"gedepubliceerd",
"depubliceren",
"Depubliceren",
"Matadata",
"nextcloud",
"opencatalogi",
"pinia",
"Toegangs"
]
"files.autoSave": "afterDelay",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"eslint.format.enable": true,
"cSpell.words": [
"depubliceren",
"Depubliceren",
"gedepubliceerd",
"Matadata",
"nextcloud",
"opencatalogi",
"organisation",
"Organisation",
"pinia",
"Toegangs"
],
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
}
3 changes: 3 additions & 0 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
'resources' => [
'metadata' => ['url' => '/api/metadata'],
'publications' => ['url' => '/api/publications'],
'organisations' => ['url' => '/api/organisations'],
'themes' => ['url' => '/api/themes'],
'attachments' => ['url' => '/api/attachments'],
'catalogi' => ['url' => '/api/catalogi'],
'directory' => ['url' => '/api/directory']
Expand All @@ -17,6 +19,7 @@
['name' => 'search#index', 'url' => '/api/search', 'verb' => 'GET'],
['name' => 'search#show', 'url' => '/api/search/{id}', 'verb' => 'GET'],
['name' => 'directory#page', 'url' => '/directory', 'verb' => 'GET'],
['name' => 'directory#add', 'url' => '/api/directory/add', 'verb' => 'POST'],
['name' => 'configuration#index', 'url' => '/configuration', 'verb' => 'GET'],
['name' => 'configuration#create', 'url' => '/configuration', 'verb' => 'POST']
],
Expand Down
125 changes: 63 additions & 62 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,65 @@
{
"name": "conductionnl/opencatalogi",
"description": "This is a DSO Nextcloud project for the municipality Buren and is done by ConductionNL",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Conduction b.v.",
"email": "[email protected]",
"homepage": "https://conduction.nl"
},
{
"name": "Remko Huisman (Conduction)",
"email": "[email protected]",
"homepage": "https://conduction.nl"
},
{
"name": "Ruben van der Linde (Conduction)",
"email": "[email protected]",
"homepage": "https://conduction.nl"
}
],
"autoload": {
"psr-4": {
"OCA\\OpenCatalogi\\": "lib/"
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
],
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm --threads=1 --no-cache",
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky",
"openapi": "generate-spec"
},
"require": {
"php": "^8.1",
"adbario/php-dot-notation": "^3.3.0",
"bamarni/composer-bin-plugin": "^1.8",
"elasticsearch/elasticsearch": "^v8.14.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/uid": "^6.4"
},
"require-dev": {
"nextcloud/ocp": "dev-stable29",
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
}
}
"name": "conductionnl/opencatalogi",
"description": "This is a DSO Nextcloud project for the municipality Buren and is done by ConductionNL",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Conduction b.v.",
"email": "[email protected]",
"homepage": "https://conduction.nl"
},
{
"name": "Remko Huisman (Conduction)",
"email": "[email protected]",
"homepage": "https://conduction.nl"
},
{
"name": "Ruben van der Linde (Conduction)",
"email": "[email protected]",
"homepage": "https://conduction.nl"
}
],
"autoload": {
"psr-4": {
"OCA\\OpenCatalogi\\": "lib/"
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
],
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm --threads=1 --no-cache",
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky",
"openapi": "generate-spec"
},
"require": {
"php": "^8.1",
"adbario/php-dot-notation": "^3.3.0",
"bamarni/composer-bin-plugin": "^1.8",
"elasticsearch/elasticsearch": "^v8.14.0",
"adbario/php-dot-notation": "^3.3.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/uid": "^6.4"
},
"require-dev": {
"nextcloud/ocp": "dev-stable29",
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"php-http/discovery": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
}
}
}
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 807e849

Please sign in to comment.