generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c98cf9
commit ae896c7
Showing
111 changed files
with
5,431 additions
and
544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github: :vendor_name | ||
github: stats4sd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask a question | ||
url: https://github.com/:vendor_name/:package_name/discussions/new?category=q-a | ||
url: https://github.com/stats4sd/filament-odk-link/discussions/new?category=q-a | ||
about: Ask the community for help | ||
- name: Request a feature | ||
url: https://github.com/:vendor_name/:package_name/discussions/new?category=ideas | ||
url: https://github.com/stats4sd/filament-odk-link/discussions/new?category=ideas | ||
about: Share ideas for new features | ||
- name: Report a security issue | ||
url: https://github.com/:vendor_name/:package_name/security/policy | ||
url: https://github.com/stats4sd/filament-odk-link/security/policy | ||
about: Learn how to notify us for sensitive bugs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Security Policy | ||
|
||
If you discover any security related issues, please email [email protected] instead of using the issue tracker. | ||
If you discover any security related issues, please email [email protected] instead of using the issue tracker. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) :vendor_name <[email protected]> | ||
Copyright (c) stats4sd <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
{ | ||
"name": ":vendor_slug/:package_slug", | ||
"description": ":package_description", | ||
"name": "stats4sd/filament-odk-link", | ||
"description": "Manage ODK forms in a harmonised way with Laravel Filament ", | ||
"keywords": [ | ||
":vendor_name", | ||
"stats4sd", | ||
"laravel", | ||
":package_slug" | ||
"filament-odk-link" | ||
], | ||
"homepage": "https://github.com/:vendor_slug/:package_slug", | ||
"homepage": "https://github.com/stats4sd/filament-odk-link", | ||
"support": { | ||
"issues": "https://github.com/:vendor_slug/:package_slug/issues", | ||
"source": "https://github.com/:vendor_slug/:package_slug" | ||
"issues": "https://github.com/stats4sd/filament-odk-link/issues", | ||
"source": "https://github.com/stats4sd/filament-odk-link" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": ":author_name", | ||
"email": "[email protected]", | ||
"name": "Stats4SD", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"filament/filament": "^3.0", | ||
"filament/forms": "^3.0", | ||
"filament/tables": "^3.0", | ||
"spatie/laravel-package-tools": "^1.15.0", | ||
"illuminate/contracts": "^10.0" | ||
}, | ||
|
@@ -37,18 +35,17 @@ | |
"pestphp/pest-plugin-laravel": "^2.0", | ||
"phpstan/extension-installer": "^1.1", | ||
"phpstan/phpstan-deprecation-rules": "^1.0", | ||
"phpstan/phpstan-phpunit": "^1.0", | ||
"spatie/laravel-ray": "^1.26" | ||
"phpstan/phpstan-phpunit": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"VendorName\\Skeleton\\": "src/", | ||
"VendorName\\Skeleton\\Database\\Factories\\": "database/factories/" | ||
"Stats4sd\\FilamentOdkLink\\": "src/", | ||
"Stats4sd\\FilamentOdkLink\\Database\\Factories\\": "database/factories/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"VendorName\\Skeleton\\Tests\\": "tests/" | ||
"Stats4sd\\FilamentOdkLink\\Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
|
@@ -68,13 +65,13 @@ | |
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"VendorName\\Skeleton\\SkeletonServiceProvider" | ||
"Stats4sd\\FilamentOdkLink\\FilamentOdkLinkServiceProvider" | ||
], | ||
"aliases": { | ||
"Skeleton": "VendorName\\Skeleton\\Facades\\Skeleton" | ||
"FilamentOdkLink": "Stats4sd\\FilamentOdkLink\\Facades\\FilamentOdkLink" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
|
||
// config for Stats4sd/OdkLink | ||
return [ | ||
|
||
'odk' => [ | ||
|
||
/** | ||
* Tells the system which Aggregation system is in use. Possible values are: | ||
* - odk-central | ||
*/ | ||
'aggregator' => env('ODK_SERVICE', 'odk-central'), | ||
|
||
/** | ||
* The base url for the service (without the trailing '/'). | ||
* If you use the public Kobotoolbox, this will be | ||
* - 'https://kf.kobotoolbox.org' or | ||
* - 'https://kobo.humanitarianresponse.info' | ||
* | ||
* If you use a custom installation of ODK Central or Kobotoolbox, it will be the base url to your service. | ||
* | ||
* | ||
*/ | ||
'url' => env('ODK_URL', ''), | ||
'base_endpoint' => env('ODK_ENDPOINT', env('ODK_URL')."/v1"), | ||
|
||
/** | ||
* Username and password for the main platform account | ||
* The platform requires a 'primary' user account on the ODK Central / KoboToolbox server to manage deployments of ODK forms. | ||
* This account will *own* every form published by the platform. | ||
* | ||
* We recommend not using an account that individuals typically use or have access to, to avoid mismatch between forms deployed and forms in the Laravel database. | ||
*/ | ||
'username' => env('ODK_USERNAME', ''), | ||
'password' => env('ODK_PASSWORD', ''), | ||
|
||
// the password to be used for individual project accounts | ||
// TODO: consider options for allowing users to set their own passwords (which we cannot keep in plain text, so we must ask the user for it every time). | ||
// TODO: consider how to hash this - maybe each project has a unique seed that combines with the main ODK_PASSWORD to generate this. | ||
'project-password' => env('ODK_PROJECT_PASSWORD', env('ODK_PASSWORD')), | ||
], | ||
|
||
'storage' => [ | ||
'xlsforms' => config('filesystem.default', 'public'), | ||
'media' => config('filesystem.default', 'public'), | ||
], | ||
|
||
'roles' => [ | ||
// the role that a user must have in order to see *all* forms, and not just the ones owned by an entity linked to the user. | ||
'xlsform-admin' => env('XLSFORM_ADMIN_ROLE', 'admin'), | ||
], | ||
|
||
'owners' => [ | ||
'main_type' => env('MAIN_OWNER_TYPE', 'team'), | ||
], | ||
|
||
'submission' => [ | ||
|
||
// The class and method used to process the submissions. | ||
// The method should be: | ||
// - a public static function; | ||
// - accept a OdkLink\Models\Submission object as the only required variable.; | ||
'process_method' => [ | ||
'class' => env('SUBMISSION_PROCESS_CLASS', null), | ||
'method' => env('SUBMISSION_PROCESS_METHOD', null), | ||
], | ||
], | ||
]; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.