Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
}

#spanner {
display:none;
display:none;
position: absolute;
top: 50%;
left: 50%;
margin-left:-13rem;
margin-top:-10rem;
margin-left:-13rem;
margin-top:-10rem;
z-index: 1000;
}
36 changes: 20 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
{
"name": "5dvision/siga-php-sample-app",
"description": "SiGa sample application",
"homepage": "https://5dvision.ee",
"type": "project",
"license": "MIT",
"support": {
"name": "5dvision/siga-php-sample-app",
"description": "SiGa sample application",
"homepage": "https://5dvision.ee",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/5dvision/siga-php-sample-app/issues",
"source": "https://github.com/5dvision/siga-php-sample-app"
},
"authors": [{
"name": "Kullar Kert",
"email": "kullar.kert@gmail.com"
}],
"repositories": [
"authors": [{
"name": "Kullar Kert",
"email": "kullar.kert@gmail.com"
}],
"repositories": [
{
"type": "path",
"url": "../siga-php-client",
"options": {
"symlink": true
}
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2.5 || ^8.0",
],
"minimum-stability": "stable",
"require": {
"php": ">=8.2",
"ext-json": "*",
"5dvision/siga-php-client": "dev-master"
"5dvision/siga-php-client": "dev-master"
},
"require-dev": {
"rector/rector": "^2.4",
"laravel/pint": "^1.29"
}
}
211 changes: 204 additions & 7 deletions composer.lock

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

24 changes: 18 additions & 6 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,41 @@
/**
* Siga endpoint URL
*/
define('SIGA_ENDPOINT', 'https://dsig.eesti.ee');
if (!defined('SIGA_ENDPOINT')) {
define('SIGA_ENDPOINT', 'https://dsig.eesti.ee');
}

/**
* Siga client name
*/
define('SIGA_CLIENT_NAME', '');
if (!defined('SIGA_CLIENT_NAME')) {
define('SIGA_CLIENT_NAME', '');
}

/**
* Siga service name
*/
define('SIGA_SERVICE_NAME', '');
if (!defined('SIGA_SERVICE_NAME')) {
define('SIGA_SERVICE_NAME', '');
}

/**
* Siga ServiceUUID for header(X-Authorization-ServiceUUID)
*/
define('SIGA_UUID', '');
if (!defined('SIGA_UUID')) {
define('SIGA_UUID', '');
}

/**
* Siga signing secret
*/
define('SIGA_SIGN_SECRET', '');
if (!defined('SIGA_SIGN_SECRET')) {
define('SIGA_SIGN_SECRET', '');
}

/**
* Upload directory where the uploaded files are stored
*/
define('UPLOAD_DIR', __DIR__ . DIRECTORY_SEPARATOR . 'uploads');
if (!defined('UPLOAD_DIR')) {
define('UPLOAD_DIR', __DIR__ . DIRECTORY_SEPARATOR . 'uploads');
}
Loading