SkillDisplay SDK to fetch data from API https://www.skilldisplay.eu/
Go to file
2023-07-07 14:10:16 +02:00
.github/workflows [!!!][TASK] Raise guzzle requirement 2023-07-06 14:37:02 +02:00
src [BUGFIX] Create SkillSet entity from array 2023-07-07 14:10:16 +02:00
tests/Unit [TASK] Fix API url for organisation statistics 2023-07-06 18:41:31 +02:00
.editorconfig [TASK] Update codestyle and add .editorconfig 2020-09-24 16:54:45 +02:00
.gitattributes [TASK] Update codestyle and add .editorconfig 2020-09-24 16:54:45 +02:00
.gitignore [TASK] Add composer.lock to gitignore to prevent CI tests lock for testing multiple versions 2023-07-06 14:00:00 +02:00
composer.json [!!!][TASK] Raise guzzle requirement 2023-07-06 14:37:02 +02:00
LICENSE.txt [TASK] Update codestyle and add .editorconfig 2020-09-24 16:54:45 +02:00
phpcs.xml.dist Follow and validate against PSR-12 2020-10-05 08:49:33 +02:00
phpunit.xml.dist Add tests and execute via GitHub Actions 2020-09-10 11:22:16 +02:00
ReadMe.md [TASK] Update ReadMe.md with composer info 2023-07-05 16:47:07 +02:00

SkillDisplay PHP ToolKit

About SkillDisplay

The European SkillDisplay is a web portal created by the NPO Verein Business Angels and allows Learners worldwide to claim verification for their skills on a European level. The skills are based on industry certifications which are broken down into dependent skills by the certification authorities themselves.

You can find more information at: https://www.skilldisplay.eu

About the PHP ToolKit

The PHP Toolkit is designed to help you connecting your own PHP application with SkillDisplay functionality. Examples:

  • You write a blog and let people track what they learned with the help of your article
  • You have an exam system want to grant Skill verification to users based on the results
  • You have a task system and want to award Skill verification on completion of a task

Verification Types

Self-Verifications

Self-Verifications are a users way to say "I can do this". This is like writing it in a resumée, but instead of an arbitrary text the claim is put into context of Skills on European level.

You'll want to include Self-Verification in your application for all matters of self-study. (Completing a tech article, Progressing in a Tutorial, etc.)

External Verifications

These Verifications require a second party - a person or organization who is tasked with verifying Skills of users in a specific context.

  • Automatic Educational-Verification: Grant skill verification via an exam system in a school, an automated review after a coaching, etc.
  • Business-Verification: Grant skill verification via a task system or project management tool which tracks work completed by employees
  • Certification: Grant skill certification via a test system for official Certification exams

Requirements

In order to work with the PHP Toolkit you need the following:

If you don't want to automate the process of skill verification for users and just want to render links they can follow to manually request verification you do not need any special settings.

Included examples:

  • Render verification buttons in the SkillDisplay design (src/Example/NoSettingsRequired/RenderVerificationButtons.php)
  • Render verification links without a design if you want to use a custom look (src/Example/NoSettingsRequired/RenderCustomVerificationLinks.php)

Automatic Self-Verifications

In order to implement automatic Self-Verification for Skills you need:

  • An API Key

Obtaining an API Key is easy. Just write us an E-Mail to partners@skilldisplay.eu, and let us know your use-case. We'll then send you an API Key.

Included examples:

  • grant automatic Self-Verification of a skill to a user for whom you know the SkillDisplay E-Mail Account (src/Example/APIKeyRequired/AutoGrantSelfVerification.php)

Automatic External-Verification

In order to implement these types of Verification for Skills you need:

  • An API Key
  • A VerifierID
  • A Verifier secret key

We grant a VerifierID and a Verifier secret key to our partners.

Included examples:

  • grant automatic Business-Verification of a skill to a user for whom you know the SkillDisplay E-Mail Account (src/Example/FullSettingsRequired/AutoGrantBusinessVerification.php)

Developer info

To fetch dependencies locally use:

docker run --rm -it -v $PWD:/app composer composer install