diff --git a/ProcessMaker/Http/Controllers/Api/ProcessLaunchpadController.php b/ProcessMaker/Http/Controllers/Api/ProcessLaunchpadController.php index 6346f0486f..bfe36624cc 100644 --- a/ProcessMaker/Http/Controllers/Api/ProcessLaunchpadController.php +++ b/ProcessMaker/Http/Controllers/Api/ProcessLaunchpadController.php @@ -12,6 +12,7 @@ use ProcessMaker\Models\Media; use ProcessMaker\Models\Process; use ProcessMaker\Models\ProcessLaunchpad; +use ProcessMaker\Models\ProcessRequest; class ProcessLaunchpadController extends Controller { @@ -60,6 +61,23 @@ public function getProcesses(Request $request) return new ProcessCollection($processes); } + protected function getCounts($processId) + { + $result = ProcessRequest::where('process_id', $processId) + ->selectRaw('status, count(*) as count') + ->groupBy('status') + ->get(); + + $completed = $result->where('status', 'COMPLETED')->first()->count; + $in_progress = $result->where('status', 'ACTIVE')->first()->count; + + return [ + 'completed' => $completed, + 'in_progress' => $in_progress, + 'total' => $completed + $in_progress, + ]; + } + /** * Get the size of the page. * per_page=# (integer, the page requested) (Default: 10). @@ -86,7 +104,11 @@ public function index(Request $request, Process $process) }]) ->where('id', $process->id) ->get() - ->toArray(); + ->map(function ($process) { + $process->counts = $this->getCounts($process->id); + + return $process; + }); return new ApiResource($processes); } diff --git a/composer.lock b/composer.lock index 47f04f6d52..50dccfc270 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,126 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "6a8ed0d48e297e4e968774fe43734201", + "content-hash": "e716bf7f4b4c1201901753812b64fd58", "packages": [ + { + "name": "aacotroneo/laravel-saml2", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/aacotroneo/laravel-saml2.git", + "reference": "6ed350b37aec3470655335a33e24496e15bde9b7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aacotroneo/laravel-saml2/zipball/6ed350b37aec3470655335a33e24496e15bde9b7", + "reference": "6ed350b37aec3470655335a33e24496e15bde9b7", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "illuminate/support": ">=5.0.0", + "onelogin/php-saml": "^3.0.0", + "php": ">=5.5.0" + }, + "require-dev": { + "mockery/mockery": "0.9.*", + "phpunit/phpunit": "~4.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Aacotroneo\\Saml2\\Saml2ServiceProvider" + ] + } + }, + "autoload": { + "psr-0": { + "Aacotroneo\\Saml2\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "aacotroneo", + "email": "aacotroneo@gmail.com" + }, + { + "name": "Niraj Patkar", + "email": "niraj@alphonso.in" + } + ], + "description": "A Laravel package for Saml2 integration as a SP (service provider) for multiple IdPs, based on OneLogin toolkit which is much more lightweight than simplesamlphp.", + "homepage": "https://github.com/aacotroneo/laravel-saml2", + "keywords": [ + "SAML2", + "laravel", + "onelogin", + "saml" + ], + "support": { + "issues": "https://github.com/aacotroneo/laravel-saml2/issues", + "source": "https://github.com/aacotroneo/laravel-saml2/tree/master" + }, + "time": "2019-10-01T23:05:14+00:00" + }, + { + "name": "adbario/php-dot-notation", + "version": "2.x-dev", + "source": { + "type": "git", + "url": "https://github.com/adbario/php-dot-notation.git", + "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae", + "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^5.5 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5", + "squizlabs/php_codesniffer": "^3.6" + }, + "type": "library", + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Adbar\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Riku Särkinen", + "email": "riku@adbar.io" + } + ], + "description": "PHP dot notation access to arrays", + "homepage": "https://github.com/adbario/php-dot-notation", + "keywords": [ + "ArrayAccess", + "dotnotation" + ], + "support": { + "issues": "https://github.com/adbario/php-dot-notation/issues", + "source": "https://github.com/adbario/php-dot-notation/tree/2.x" + }, + "time": "2022-10-14T20:31:46+00:00" + }, { "name": "aws/aws-crt-php", "version": "v1.2.4", @@ -487,6 +605,81 @@ }, "time": "2021-12-16T21:41:27+00:00" }, + { + "name": "box/spout", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/box/spout.git", + "reference": "9bdb027d312b732515b884a341c0ad70372c6295" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295", + "reference": "9bdb027d312b732515b884a341c0ad70372c6295", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlreader": "*", + "ext-zip": "*", + "php": ">=7.2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2", + "phpunit/phpunit": "^8" + }, + "suggest": { + "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)", + "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Box\\Spout\\": "src/Spout" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Adrien Loison", + "email": "adrien@box.com" + } + ], + "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way", + "homepage": "https://www.github.com/box/spout", + "keywords": [ + "OOXML", + "csv", + "excel", + "memory", + "odf", + "ods", + "office", + "open", + "php", + "read", + "scale", + "spreadsheet", + "stream", + "write", + "xlsx" + ], + "support": { + "issues": "https://github.com/box/spout/issues", + "source": "https://github.com/box/spout/tree/v3.3.0" + }, + "abandoned": true, + "time": "2021-05-14T21:18:09+00:00" + }, { "name": "brick/math", "version": "0.11.0", @@ -611,6 +804,72 @@ ], "time": "2023-12-11T17:09:12+00:00" }, + { + "name": "clue/stream-filter", + "version": "v1.7.0", + "source": { + "type": "git", + "url": "https://github.com/clue/stream-filter.git", + "reference": "049509fef80032cb3f051595029ab75b49a3c2f7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7", + "reference": "049509fef80032cb3f051595029ab75b49a3c2f7", + "shasum": "" + }, + "require": { + "php": ">=5.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "Clue\\StreamFilter\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + } + ], + "description": "A simple and modern approach to stream filtering in PHP", + "homepage": "https://github.com/clue/stream-filter", + "keywords": [ + "bucket brigade", + "callback", + "filter", + "php_user_filter", + "stream", + "stream_filter_append", + "stream_filter_register" + ], + "support": { + "issues": "https://github.com/clue/stream-filter/issues", + "source": "https://github.com/clue/stream-filter/tree/v1.7.0" + }, + "funding": [ + { + "url": "https://clue.engineering/support", + "type": "custom" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2023-12-20T15:40:13+00:00" + }, { "name": "codegreencreative/laravel-samlidp", "version": "v5.2.8", @@ -1018,6 +1277,80 @@ }, "time": "2022-10-27T11:44:00+00:00" }, + { + "name": "directorytree/ldaprecord", + "version": "v2.20.5", + "source": { + "type": "git", + "url": "https://github.com/DirectoryTree/LdapRecord.git", + "reference": "5bd0a5a9d257cf1049ae83055dbba4c3479ddf16" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/DirectoryTree/LdapRecord/zipball/5bd0a5a9d257cf1049ae83055dbba4c3479ddf16", + "reference": "5bd0a5a9d257cf1049ae83055dbba4c3479ddf16", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-ldap": "*", + "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0", + "nesbot/carbon": "^1.0|^2.0", + "php": ">=7.3", + "psr/log": "^1.0|^2.0|^3.0", + "psr/simple-cache": "^1.0|^2.0", + "symfony/polyfill-php80": "^1.25", + "tightenco/collect": "^5.6|^6.0|^7.0|^8.0|^9.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^9.0", + "spatie/ray": "^1.24" + }, + "type": "library", + "autoload": { + "psr-4": { + "LdapRecord\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Steve Bauman", + "email": "steven_bauman@outlook.com", + "role": "Developer" + } + ], + "description": "A fully-featured LDAP ORM.", + "homepage": "https://www.ldaprecord.com", + "keywords": [ + "active directory", + "ad", + "adLDAP", + "adldap2", + "directory", + "ldap", + "ldaprecord", + "orm", + "windows" + ], + "support": { + "docs": "https://ldaprecord.com", + "email": "steven_bauman@outlook.com", + "issues": "https://github.com/DirectoryTree/LdapRecord/issues", + "source": "https://github.com/DirectoryTree/LdapRecord" + }, + "funding": [ + { + "url": "https://github.com/stevebauman", + "type": "github" + } + ], + "time": "2023-10-11T16:34:34+00:00" + }, { "name": "doctrine/annotations", "version": "2.0.1", @@ -1842,6 +2175,67 @@ ], "time": "2023-11-11T09:01:22+00:00" }, + { + "name": "ezyang/htmlpurifier", + "version": "v4.17.0", + "source": { + "type": "git", + "url": "https://github.com/ezyang/htmlpurifier.git", + "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c", + "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c", + "shasum": "" + }, + "require": { + "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0" + }, + "require-dev": { + "cerdic/css-tidy": "^1.7 || ^2.0", + "simpletest/simpletest": "dev-master" + }, + "suggest": { + "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", + "ext-bcmath": "Used for unit conversion and imagecrash protection", + "ext-iconv": "Converts text to and from non-UTF-8 encodings", + "ext-tidy": "Used for pretty-printing HTML" + }, + "type": "library", + "autoload": { + "files": [ + "library/HTMLPurifier.composer.php" + ], + "psr-0": { + "HTMLPurifier": "library/" + }, + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Edward Z. Yang", + "email": "admin@htmlpurifier.org", + "homepage": "http://ezyang.com" + } + ], + "description": "Standards compliant HTML filter written in PHP", + "homepage": "http://htmlpurifier.org/", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0" + }, + "time": "2023-11-17T15:01:25+00:00" + }, { "name": "fakerphp/faker", "version": "v1.23.0", @@ -2920,24 +3314,82 @@ "time": "2023-12-03T19:50:20+00:00" }, { - "name": "igaster/laravel-theme", - "version": "v2.0.19", + "name": "http-interop/http-factory-guzzle", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/igaster/laravel-theme.git", - "reference": "94fed84d84ca1b27959d6189bb7872110c80d299" + "url": "https://github.com/http-interop/http-factory-guzzle.git", + "reference": "8f06e92b95405216b237521cc64c804dd44c4a81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/igaster/laravel-theme/zipball/94fed84d84ca1b27959d6189bb7872110c80d299", - "reference": "94fed84d84ca1b27959d6189bb7872110c80d299", + "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81", + "reference": "8f06e92b95405216b237521cc64c804dd44c4a81", "shasum": "" }, "require": { - "illuminate/contracts": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" + "guzzlehttp/psr7": "^1.7||^2.0", + "php": ">=7.3", + "psr/http-factory": "^1.0" + }, + "provide": { + "psr/http-factory-implementation": "^1.0" + }, + "require-dev": { + "http-interop/http-factory-tests": "^0.9", + "phpunit/phpunit": "^9.5" }, "suggest": { - "orchestra/asset": "Use '@css' and '@js' in Blade files" + "guzzlehttp/psr7": "Includes an HTTP factory starting in version 2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Http\\Factory\\Guzzle\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "An HTTP Factory using Guzzle PSR7", + "keywords": [ + "factory", + "http", + "psr-17", + "psr-7" + ], + "support": { + "issues": "https://github.com/http-interop/http-factory-guzzle/issues", + "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0" + }, + "time": "2021-07-21T13:50:14+00:00" + }, + { + "name": "igaster/laravel-theme", + "version": "v2.0.19", + "source": { + "type": "git", + "url": "https://github.com/igaster/laravel-theme.git", + "reference": "94fed84d84ca1b27959d6189bb7872110c80d299" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igaster/laravel-theme/zipball/94fed84d84ca1b27959d6189bb7872110c80d299", + "reference": "94fed84d84ca1b27959d6189bb7872110c80d299", + "shasum": "" + }, + "require": { + "illuminate/contracts": "5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0" + }, + "suggest": { + "orchestra/asset": "Use '@css' and '@js' in Blade files" }, "type": "library", "extra": { @@ -3118,6 +3570,65 @@ }, "time": "2023-07-21T15:49:49+00:00" }, + { + "name": "jean85/pretty-package-versions", + "version": "2.0.5", + "source": { + "type": "git", + "url": "https://github.com/Jean85/pretty-package-versions.git", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "shasum": "" + }, + "require": { + "composer-runtime-api": "^2.0.0", + "php": "^7.1|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.17", + "jean85/composer-provided-replaced-stub-package": "^1.0", + "phpstan/phpstan": "^0.12.66", + "phpunit/phpunit": "^7.5|^8.5|^9.4", + "vimeo/psalm": "^4.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Jean85\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alessandro Lai", + "email": "alessandro.lai85@gmail.com" + } + ], + "description": "A library to get pretty versions strings of installed dependencies", + "keywords": [ + "composer", + "package", + "release", + "versions" + ], + "support": { + "issues": "https://github.com/Jean85/pretty-package-versions/issues", + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" + }, + "time": "2021-10-08T21:21:46+00:00" + }, { "name": "jenssegers/agent", "version": "v2.6.4", @@ -3752,6 +4263,78 @@ }, "time": "2023-11-08T14:08:06+00:00" }, + { + "name": "laravel/socialite", + "version": "v5.14.0", + "source": { + "type": "git", + "url": "https://github.com/laravel/socialite.git", + "reference": "c7b0193a3753a29aff8ce80aa2f511917e6ed68a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/socialite/zipball/c7b0193a3753a29aff8ce80aa2f511917e6ed68a", + "reference": "c7b0193a3753a29aff8ce80aa2f511917e6ed68a", + "shasum": "" + }, + "require": { + "ext-json": "*", + "firebase/php-jwt": "^6.4", + "guzzlehttp/guzzle": "^6.0|^7.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "league/oauth1-client": "^1.10.1", + "php": "^7.2|^8.0", + "phpseclib/phpseclib": "^3.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.0|^9.3|^10.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Socialite\\SocialiteServiceProvider" + ], + "aliases": { + "Socialite": "Laravel\\Socialite\\Facades\\Socialite" + } + } + }, + "autoload": { + "psr-4": { + "Laravel\\Socialite\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.", + "homepage": "https://laravel.com", + "keywords": [ + "laravel", + "oauth" + ], + "support": { + "issues": "https://github.com/laravel/socialite/issues", + "source": "https://github.com/laravel/socialite" + }, + "time": "2024-05-03T20:31:38+00:00" + }, { "name": "laravel/telescope", "version": "v4.17.3", @@ -4870,6 +5453,82 @@ ], "time": "2023-10-17T14:13:20+00:00" }, + { + "name": "league/oauth1-client", + "version": "v1.10.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth1-client.git", + "reference": "d6365b901b5c287dd41f143033315e2f777e1167" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167", + "reference": "d6365b901b5c287dd41f143033315e2f777e1167", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-openssl": "*", + "guzzlehttp/guzzle": "^6.0|^7.0", + "guzzlehttp/psr7": "^1.7|^2.0", + "php": ">=7.1||>=8.0" + }, + "require-dev": { + "ext-simplexml": "*", + "friendsofphp/php-cs-fixer": "^2.17", + "mockery/mockery": "^1.3.3", + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5||9.5" + }, + "suggest": { + "ext-simplexml": "For decoding XML-based responses." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev", + "dev-develop": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "League\\OAuth1\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Corlett", + "email": "bencorlett@me.com", + "homepage": "http://www.webcomm.com.au", + "role": "Developer" + } + ], + "description": "OAuth 1.0 Client Library", + "keywords": [ + "Authentication", + "SSO", + "authorization", + "bitbucket", + "identity", + "idp", + "oauth", + "oauth1", + "single sign on", + "trello", + "tumblr", + "twitter" + ], + "support": { + "issues": "https://github.com/thephpleague/oauth1-client/issues", + "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1" + }, + "time": "2022-04-15T14:02:14+00:00" + }, { "name": "league/oauth2-server", "version": "8.5.4", @@ -5283,48 +5942,32 @@ "time": "2023-06-21T14:59:35+00:00" }, { - "name": "mateusjunges/laravel-kafka", - "version": "v1.13.6", + "name": "markbaker/complex", + "version": "3.0.2", "source": { "type": "git", - "url": "https://github.com/mateusjunges/laravel-kafka.git", - "reference": "ba641b291cd2da61a828e351d3d47019285b871e" + "url": "https://github.com/MarkBaker/PHPComplex.git", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mateusjunges/laravel-kafka/zipball/ba641b291cd2da61a828e351d3d47019285b871e", - "reference": "ba641b291cd2da61a828e351d3d47019285b871e", + "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", + "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", "shasum": "" }, "require": { - "ext-rdkafka": "^5.0|^6.0", - "flix-tech/avro-serde-php": "^2.0", - "illuminate/contracts": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0", - "monolog/monolog": "^3.4", - "php": "^8.1|^8.2" + "php": "^7.2 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.0", - "kwn/php-rdkafka-stubs": "^2.2", - "orchestra/testbench": "^7.16|^8.0", - "phpunit/phpunit": "^9.5", - "predis/predis": "^1.1" - }, - "suggest": { - "ext-pcntl": "Required to enable all features of the kafka consumer" + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.7" }, "type": "library", - "extra": { - "laravel": { - "providers": [ - "Junges\\Kafka\\Providers\\LaravelKafkaServiceProvider" - ] - } - }, "autoload": { "psr-4": { - "Junges\\Kafka\\": "src/" + "Complex\\": "classes/src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5333,40 +5976,163 @@ ], "authors": [ { - "name": "mateusjunges", - "email": "mateus@junges.dev", - "role": "Senior Software Engineer" + "name": "Mark Baker", + "email": "mark@lange.demon.co.uk" } ], - "description": "A kafka driver for laravel", + "description": "PHP Class for working with complex numbers", + "homepage": "https://github.com/MarkBaker/PHPComplex", + "keywords": [ + "complex", + "mathematics" + ], "support": { - "issues": "https://github.com/mateusjunges/laravel-kafka/issues", - "source": "https://github.com/mateusjunges/laravel-kafka/tree/v1.13.6" + "issues": "https://github.com/MarkBaker/PHPComplex/issues", + "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" }, - "funding": [ - { - "url": "https://github.com/mateusjunges", - "type": "github" - } - ], - "time": "2023-12-07T18:12:43+00:00" + "time": "2022-12-06T16:21:08+00:00" }, { - "name": "microsoft/microsoft-graph", - "version": "1.109.2", + "name": "markbaker/matrix", + "version": "3.0.1", "source": { "type": "git", - "url": "https://github.com/microsoftgraph/msgraph-sdk-php.git", - "reference": "c4490238f65fc68e2263ff4d5dbdebe02e7f0517" + "url": "https://github.com/MarkBaker/PHPMatrix.git", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/c4490238f65fc68e2263ff4d5dbdebe02e7f0517", - "reference": "c4490238f65fc68e2263ff4d5dbdebe02e7f0517", + "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", + "reference": "728434227fe21be27ff6d86621a1b13107a2562c", "shasum": "" }, "require": { - "ext-json": "*", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-master", + "phpcompatibility/php-compatibility": "^9.3", + "phpdocumentor/phpdocumentor": "2.*", + "phploc/phploc": "^4.0", + "phpmd/phpmd": "2.*", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "sebastian/phpcpd": "^4.0", + "squizlabs/php_codesniffer": "^3.7" + }, + "type": "library", + "autoload": { + "psr-4": { + "Matrix\\": "classes/src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Baker", + "email": "mark@demon-angel.eu" + } + ], + "description": "PHP Class for working with matrices", + "homepage": "https://github.com/MarkBaker/PHPMatrix", + "keywords": [ + "mathematics", + "matrix", + "vector" + ], + "support": { + "issues": "https://github.com/MarkBaker/PHPMatrix/issues", + "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" + }, + "time": "2022-12-02T22:17:43+00:00" + }, + { + "name": "mateusjunges/laravel-kafka", + "version": "v1.13.6", + "source": { + "type": "git", + "url": "https://github.com/mateusjunges/laravel-kafka.git", + "reference": "ba641b291cd2da61a828e351d3d47019285b871e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mateusjunges/laravel-kafka/zipball/ba641b291cd2da61a828e351d3d47019285b871e", + "reference": "ba641b291cd2da61a828e351d3d47019285b871e", + "shasum": "" + }, + "require": { + "ext-rdkafka": "^5.0|^6.0", + "flix-tech/avro-serde-php": "^2.0", + "illuminate/contracts": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", + "monolog/monolog": "^3.4", + "php": "^8.1|^8.2" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.0", + "kwn/php-rdkafka-stubs": "^2.2", + "orchestra/testbench": "^7.16|^8.0", + "phpunit/phpunit": "^9.5", + "predis/predis": "^1.1" + }, + "suggest": { + "ext-pcntl": "Required to enable all features of the kafka consumer" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "Junges\\Kafka\\Providers\\LaravelKafkaServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Junges\\Kafka\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "mateusjunges", + "email": "mateus@junges.dev", + "role": "Senior Software Engineer" + } + ], + "description": "A kafka driver for laravel", + "support": { + "issues": "https://github.com/mateusjunges/laravel-kafka/issues", + "source": "https://github.com/mateusjunges/laravel-kafka/tree/v1.13.6" + }, + "funding": [ + { + "url": "https://github.com/mateusjunges", + "type": "github" + } + ], + "time": "2023-12-07T18:12:43+00:00" + }, + { + "name": "microsoft/microsoft-graph", + "version": "1.109.2", + "source": { + "type": "git", + "url": "https://github.com/microsoftgraph/msgraph-sdk-php.git", + "reference": "c4490238f65fc68e2263ff4d5dbdebe02e7f0517" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/microsoftgraph/msgraph-sdk-php/zipball/c4490238f65fc68e2263ff4d5dbdebe02e7f0517", + "reference": "c4490238f65fc68e2263ff4d5dbdebe02e7f0517", + "shasum": "" + }, + "require": { + "ext-json": "*", "guzzlehttp/guzzle": "^6.0 || ^7.0", "php": "^8.0 || ^7.3", "psr/http-message": "^1.0 || ^2.0" @@ -6212,6 +6978,69 @@ ], "time": "2023-11-13T09:31:12+00:00" }, + { + "name": "onelogin/php-saml", + "version": "3.7.0", + "source": { + "type": "git", + "url": "https://github.com/SAML-Toolkits/php-saml.git", + "reference": "91c1a3b3e2390aba9facc64ba81b407a50962ebb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SAML-Toolkits/php-saml/zipball/91c1a3b3e2390aba9facc64ba81b407a50962ebb", + "reference": "91c1a3b3e2390aba9facc64ba81b407a50962ebb", + "shasum": "" + }, + "require": { + "php": ">=5.4", + "robrichards/xmlseclibs": ">=3.1.1" + }, + "require-dev": { + "pdepend/pdepend": "^2.5.0", + "php-coveralls/php-coveralls": "^1.0.2 || ^2.0", + "phploc/phploc": "^2.1 || ^3.0 || ^4.0", + "phpunit/phpunit": "<7.5.18", + "sebastian/phpcpd": "^2.0 || ^3.0 || ^4.0", + "squizlabs/php_codesniffer": "^3.1.1" + }, + "suggest": { + "ext-curl": "Install curl lib to be able to use the IdPMetadataParser for parsing remote XMLs", + "ext-gettext": "Install gettext and php5-gettext libs to handle translations", + "ext-openssl": "Install openssl lib in order to handle with x509 certs (require to support sign and encryption)" + }, + "type": "library", + "autoload": { + "psr-4": { + "OneLogin\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHP SAML Toolkit", + "homepage": "https://github.com/SAML-Toolkits/php-saml", + "keywords": [ + "Federation", + "SAML2", + "SSO", + "identity", + "saml" + ], + "support": { + "email": "sixto.martin.garcia@gmail.com", + "issues": "https://github.com/onelogin/SAML-Toolkits/issues", + "source": "https://github.com/onelogin/SAML-Toolkits/" + }, + "funding": [ + { + "url": "https://github.com/SAML-Toolkits", + "type": "github" + } + ], + "time": "2024-05-30T15:14:26+00:00" + }, { "name": "openai-php/client", "version": "v0.5.3", @@ -6700,6 +7529,75 @@ }, "time": "2023-10-22T15:02:02+00:00" }, + { + "name": "php-http/client-common", + "version": "2.7.1", + "source": { + "type": "git", + "url": "https://github.com/php-http/client-common.git", + "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/client-common/zipball/1e19c059b0e4d5f717bf5d524d616165aeab0612", + "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "php-http/httplug": "^2.0", + "php-http/message": "^1.6", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0 || ^2.0", + "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0", + "symfony/polyfill-php80": "^1.17" + }, + "require-dev": { + "doctrine/instantiator": "^1.1", + "guzzlehttp/psr7": "^1.4", + "nyholm/psr7": "^1.2", + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", + "phpspec/prophecy": "^1.10.2", + "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7" + }, + "suggest": { + "ext-json": "To detect JSON responses with the ContentTypePlugin", + "ext-libxml": "To detect XML responses with the ContentTypePlugin", + "php-http/cache-plugin": "PSR-6 Cache plugin", + "php-http/logger-plugin": "PSR-3 Logger plugin", + "php-http/stopwatch-plugin": "Symfony Stopwatch plugin" + }, + "type": "library", + "autoload": { + "psr-4": { + "Http\\Client\\Common\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Common HTTP Client implementations and tools for HTTPlug", + "homepage": "http://httplug.io", + "keywords": [ + "client", + "common", + "http", + "httplug" + ], + "support": { + "issues": "https://github.com/php-http/client-common/issues", + "source": "https://github.com/php-http/client-common/tree/2.7.1" + }, + "time": "2023-11-30T10:31:25+00:00" + }, { "name": "php-http/discovery", "version": "1.19.2", @@ -6836,34 +7734,49 @@ "time": "2023-04-14T15:10:03+00:00" }, { - "name": "php-http/multipart-stream-builder", - "version": "1.3.0", + "name": "php-http/message", + "version": "1.16.1", "source": { "type": "git", - "url": "https://github.com/php-http/multipart-stream-builder.git", - "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a" + "url": "https://github.com/php-http/message.git", + "reference": "5997f3289332c699fa2545c427826272498a2088" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a", - "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a", + "url": "https://api.github.com/repos/php-http/message/zipball/5997f3289332c699fa2545c427826272498a2088", + "reference": "5997f3289332c699fa2545c427826272498a2088", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "php-http/discovery": "^1.15", - "psr/http-factory-implementation": "^1.0" + "clue/stream-filter": "^1.5", + "php": "^7.2 || ^8.0", + "psr/http-message": "^1.1 || ^2.0" + }, + "provide": { + "php-http/message-factory-implementation": "1.0" }, "require-dev": { - "nyholm/psr7": "^1.0", - "php-http/message": "^1.5", + "ergebnis/composer-normalize": "^2.6", + "ext-zlib": "*", + "guzzlehttp/psr7": "^1.0 || ^2.0", + "laminas/laminas-diactoros": "^2.0 || ^3.0", "php-http/message-factory": "^1.0.2", - "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3" + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", + "slim/slim": "^3.0" + }, + "suggest": { + "ext-zlib": "Used with compressor/decompressor streams", + "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories", + "laminas/laminas-diactoros": "Used with Diactoros Factories", + "slim/slim": "Used with Slim Framework PSR-7 implementation" }, "type": "library", "autoload": { + "files": [ + "src/filters.php" + ], "psr-4": { - "Http\\Message\\MultipartStream\\": "src/" + "Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6872,50 +7785,50 @@ ], "authors": [ { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" } ], - "description": "A builder class that help you create a multipart stream", + "description": "HTTP Message related tools", "homepage": "http://php-http.org", "keywords": [ - "factory", "http", "message", - "multipart stream", - "stream" + "psr-7" ], "support": { - "issues": "https://github.com/php-http/multipart-stream-builder/issues", - "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0" + "issues": "https://github.com/php-http/message/issues", + "source": "https://github.com/php-http/message/tree/1.16.1" }, - "time": "2023-04-28T14:10:22+00:00" + "time": "2024-03-07T13:22:09+00:00" }, { - "name": "php-http/promise", - "version": "1.2.1", + "name": "php-http/message-factory", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/php-http/promise.git", - "reference": "44a67cb59f708f826f3bec35f22030b3edb90119" + "url": "https://github.com/php-http/message-factory.git", + "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/promise/zipball/44a67cb59f708f826f3bec35f22030b3edb90119", - "reference": "44a67cb59f708f826f3bec35f22030b3edb90119", + "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57", + "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3", - "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4" + "php": ">=5.4", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { "psr-4": { - "Http\\Promise\\": "src/" + "Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6923,30 +7836,362 @@ "MIT" ], "authors": [ - { - "name": "Joel Wurtz", - "email": "joel.wurtz@gmail.com" - }, { "name": "Márk Sági-Kazár", "email": "mark.sagikazar@gmail.com" } ], - "description": "Promise used for asynchronous HTTP requests", - "homepage": "http://httplug.io", + "description": "Factory interfaces for PSR-7 HTTP Message", + "homepage": "http://php-http.org", "keywords": [ - "promise" + "factory", + "http", + "message", + "stream", + "uri" ], "support": { - "issues": "https://github.com/php-http/promise/issues", - "source": "https://github.com/php-http/promise/tree/1.2.1" + "issues": "https://github.com/php-http/message-factory/issues", + "source": "https://github.com/php-http/message-factory/tree/1.1.0" }, - "time": "2023-11-08T12:57:08+00:00" + "abandoned": "psr/http-factory", + "time": "2023-04-14T14:16:17+00:00" }, { - "name": "phpoption/phpoption", - "version": "1.9.2", - "source": { + "name": "php-http/multipart-stream-builder", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/multipart-stream-builder.git", + "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a", + "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "php-http/discovery": "^1.15", + "psr/http-factory-implementation": "^1.0" + }, + "require-dev": { + "nyholm/psr7": "^1.0", + "php-http/message": "^1.5", + "php-http/message-factory": "^1.0.2", + "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Http\\Message\\MultipartStream\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" + } + ], + "description": "A builder class that help you create a multipart stream", + "homepage": "http://php-http.org", + "keywords": [ + "factory", + "http", + "message", + "multipart stream", + "stream" + ], + "support": { + "issues": "https://github.com/php-http/multipart-stream-builder/issues", + "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0" + }, + "time": "2023-04-28T14:10:22+00:00" + }, + { + "name": "php-http/promise", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/php-http/promise.git", + "reference": "44a67cb59f708f826f3bec35f22030b3edb90119" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/promise/zipball/44a67cb59f708f826f3bec35f22030b3edb90119", + "reference": "44a67cb59f708f826f3bec35f22030b3edb90119", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3", + "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Http\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Joel Wurtz", + "email": "joel.wurtz@gmail.com" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Promise used for asynchronous HTTP requests", + "homepage": "http://httplug.io", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/php-http/promise/issues", + "source": "https://github.com/php-http/promise/tree/1.2.1" + }, + "time": "2023-11-08T12:57:08+00:00" + }, + { + "name": "php-imap/php-imap", + "version": "4.5.3", + "source": { + "type": "git", + "url": "https://github.com/barbushin/php-imap.git", + "reference": "d4f62bf2103f8bbd3ffe337e4df75e2c6ba6a2e7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barbushin/php-imap/zipball/d4f62bf2103f8bbd3ffe337e4df75e2c6ba6a2e7", + "reference": "d4f62bf2103f8bbd3ffe337e4df75e2c6ba6a2e7", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "ext-iconv": "*", + "ext-imap": "*", + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.4", + "maglnet/composer-require-checker": "^2.0|^3.2", + "nikic/php-parser": "^4.3,<4.7|^4.10", + "paragonie/hidden-string": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpunit/phpunit": "^8.5|^9.5", + "povils/phpmnd": "^2.2", + "psalm/plugin-phpunit": "^0.10.0|^0.15.1", + "roave/security-advisories": "dev-master", + "sebastian/phpcpd": "^4.1|^6.0" + }, + "suggest": { + "ext-fileinfo": "To facilitate IncomingMailAttachment::getFileInfo() auto-detection" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpImap\\": "src/PhpImap" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sergey Barbushin", + "email": "barbushin@gmail.com", + "homepage": "http://linkedin.com/in/barbushin" + } + ], + "description": "Manage mailboxes, filter/get/delete emails in PHP (supports IMAP/POP3/NNTP)", + "homepage": "https://github.com/barbushin/php-imap", + "keywords": [ + "imap", + "mail", + "mailbox", + "php", + "pop3", + "receive emails" + ], + "support": { + "issues": "https://github.com/barbushin/php-imap/issues", + "source": "https://github.com/barbushin/php-imap/tree/4.5.3" + }, + "time": "2022-03-12T01:38:35+00:00" + }, + { + "name": "phplang/scope-exit", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/phplang/scope-exit.git", + "reference": "239b73abe89f9414aa85a7ca075ec9445629192b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phplang/scope-exit/zipball/239b73abe89f9414aa85a7ca075ec9445629192b", + "reference": "239b73abe89f9414aa85a7ca075ec9445629192b", + "shasum": "" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpLang\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD" + ], + "authors": [ + { + "name": "Sara Golemon", + "email": "pollita@php.net", + "homepage": "https://twitter.com/SaraMG", + "role": "Developer" + } + ], + "description": "Emulation of SCOPE_EXIT construct from C++", + "homepage": "https://github.com/phplang/scope-exit", + "keywords": [ + "cleanup", + "exit", + "scope" + ], + "support": { + "issues": "https://github.com/phplang/scope-exit/issues", + "source": "https://github.com/phplang/scope-exit/tree/master" + }, + "time": "2016-09-17T00:15:18+00:00" + }, + { + "name": "phpoffice/phpspreadsheet", + "version": "1.29.0", + "source": { + "type": "git", + "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", + "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", + "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-dom": "*", + "ext-fileinfo": "*", + "ext-gd": "*", + "ext-iconv": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xml": "*", + "ext-xmlreader": "*", + "ext-xmlwriter": "*", + "ext-zip": "*", + "ext-zlib": "*", + "ezyang/htmlpurifier": "^4.15", + "maennchen/zipstream-php": "^2.1 || ^3.0", + "markbaker/complex": "^3.0", + "markbaker/matrix": "^3.0", + "php": "^7.4 || ^8.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0", + "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "dev-main", + "dompdf/dompdf": "^1.0 || ^2.0", + "friendsofphp/php-cs-fixer": "^3.2", + "mitoteam/jpgraph": "^10.3", + "mpdf/mpdf": "^8.1.1", + "phpcompatibility/php-compatibility": "^9.3", + "phpstan/phpstan": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", + "squizlabs/php_codesniffer": "^3.7", + "tecnickcom/tcpdf": "^6.5" + }, + "suggest": { + "dompdf/dompdf": "Option for rendering PDF with PDF Writer", + "ext-intl": "PHP Internationalization Functions", + "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", + "mpdf/mpdf": "Option for rendering PDF with PDF Writer", + "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Maarten Balliauw", + "homepage": "https://blog.maartenballiauw.be" + }, + { + "name": "Mark Baker", + "homepage": "https://markbakeruk.net" + }, + { + "name": "Franck Lefevre", + "homepage": "https://rootslabs.net" + }, + { + "name": "Erik Tilt" + }, + { + "name": "Adrien Crivelli" + } + ], + "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", + "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", + "keywords": [ + "OpenXML", + "excel", + "gnumeric", + "ods", + "php", + "spreadsheet", + "xls", + "xlsx" + ], + "support": { + "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", + "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" + }, + "time": "2023-06-14T22:48:31+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.9.2", + "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" @@ -7318,57 +8563,284 @@ "time": "2023-09-13T16:42:03+00:00" }, { - "name": "processmaker/docker-executor-lua", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/ProcessMaker/docker-executor-lua.git", - "reference": "15b50b089380a45a6634f0c43edd9ef38104f553" - }, + "name": "processmaker/connector-docusign", + "version": "1.9.0", "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ProcessMaker/docker-executor-lua/zipball/15b50b089380a45a6634f0c43edd9ef38104f553", - "reference": "15b50b089380a45a6634f0c43edd9ef38104f553", - "shasum": "" + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/connector-docusign", + "reference": "852eb1b4da449c53b39c7b62022b1e6e4afbc183" }, - "type": "library", + "type": "project", "extra": { "laravel": { "providers": [ - "ProcessMaker\\Package\\DockerExecutorLua\\DockerExecutorLuaServiceProvider" + "ProcessMaker\\Package\\ConnectorDocusign\\PackageServiceProvider" ] } }, "autoload": { "psr-4": { - "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners", - "ProcessMaker\\Package\\DockerExecutorLua\\": "src" + "ProcessMaker\\Package\\ConnectorDocusign\\": "src", + "ProcessMaker\\Package\\ConnectorDocusign\\Seeds\\": "database/seeds", + "Tests\\ConnectorDocusign\\": "tests/" } }, - "notification-url": "https://packagist.org/downloads/", + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, "license": [ - "GAGPL-3.0-or-later" + "AGPL-3.0-or-later" ], - "description": "Lua script executor for processmaker 4", - "support": { - "issues": "https://github.com/ProcessMaker/docker-executor-lua/issues", - "source": "https://github.com/ProcessMaker/docker-executor-lua/tree/v1.0.1" + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Package skeleton to develop a package for ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/connector-idp", + "version": "1.9.4", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/connector-idp", + "reference": "c1638eda07713a5b203c56b5e50f431d4ba69184" + }, + "require": { + "mustache/mustache": "^2.12.0" + }, + "require-dev": { + "processmaker/processmaker": "4.0.*" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Packages\\Connectors\\Idp\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Packages\\Connectors\\Idp\\": "src/", + "Tests\\ConnectorIdp\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "Sanja Cornelius", + "email": "sanja.cornelius@processmaker.com" + } + ], + "description": "ProcessMaker BPM Connector Template", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/connector-pdf-print", + "version": "1.16.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/connector-pdf-print", + "reference": "8344469af7ebc9653461b650e52bbbde32d80942" + }, + "require": { + "mustache/mustache": "^2.12.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Packages\\Connectors\\Pdf\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Packages\\Connectors\\Pdf\\": "src/" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker BPM Connectors that provides PDF integration", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/connector-send-email", + "version": "1.26.3", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/connector-send-email", + "reference": "65afddc554fa74060ee1e37032372f4c3dcba4d9" + }, + "require": { + "aws/aws-sdk-php": "^3.183", + "mustache/mustache": "^2.12.0", + "symfony/http-client": "^6.3", + "symfony/postmark-mailer": "^6.3" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Packages\\Connectors\\Email\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Packages\\Connectors\\Email\\": "src/", + "ProcessMaker\\ScriptRunners\\": "tests/ScriptRunners/", + "ProcessMaker\\Packages\\Connectors\\Email\\Seeds\\": "database/seeds", + "Tests\\ConnectorSendEmail\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker BPM Connectors that provide Email service", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/connector-slack", + "version": "1.8.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/connector-slack", + "reference": "4fc62dc28b1cfb43ef16ec32a8bc587f9d6cefe7" + }, + "require-dev": { + "processmaker/processmaker": "4.0.*" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Packages\\Connectors\\Slack\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Packages\\Connectors\\Slack\\": "src/" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker BPM Connectors that provides Slack integration", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/docker-executor-cdata", + "version": "1.4.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/docker-executor-cdata", + "reference": "ab03da6479eb2136c9a461c47a1aaab6b8e7314c" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\DockerExecutorCdata\\DockerExecutorCdataServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\DockerExecutorCdata\\": "src", + "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners", + "Tests\\": "tests/" + } + }, + "license": [ + "GAGPL-3.0-or-later" + ], + "description": "CData Executor for ProcessMaker", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/docker-executor-lua", + "version": "1.0.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/docker-executor-lua", + "reference": "15b50b089380a45a6634f0c43edd9ef38104f553" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\DockerExecutorLua\\DockerExecutorLuaServiceProvider" + ] + } }, - "time": "2023-12-15T22:19:22+00:00" + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\DockerExecutorLua\\": "src", + "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners" + } + }, + "license": [ + "GAGPL-3.0-or-later" + ], + "description": "Lua script executor for processmaker 4", + "transport-options": { + "symlink": true, + "relative": false + } }, { "name": "processmaker/docker-executor-node", "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/ProcessMaker/docker-executor-node.git", - "reference": "a6aaa10ce65e2dcca0167db3da41865f6319132a" - }, "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ProcessMaker/docker-executor-node/zipball/a6aaa10ce65e2dcca0167db3da41865f6319132a", - "reference": "a6aaa10ce65e2dcca0167db3da41865f6319132a", - "shasum": "" + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/docker-executor-node", + "reference": "a6aaa10ce65e2dcca0167db3da41865f6319132a" }, "type": "library", "extra": { @@ -7380,163 +8852,1441 @@ }, "autoload": { "psr-4": { - "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners", - "ProcessMaker\\Package\\DockerExecutorNode\\": "src" + "ProcessMaker\\Package\\DockerExecutorNode\\": "src", + "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners" } }, - "notification-url": "https://packagist.org/downloads/", "license": [ "GAGPL-3.0-or-later" ], "description": "Javascript script executor for processmaker 4", - "support": { - "issues": "https://github.com/ProcessMaker/docker-executor-node/issues", - "source": "https://github.com/ProcessMaker/docker-executor-node/tree/v1.1.0" + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/docker-executor-node-ssr", + "version": "1.5.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/docker-executor-node-ssr", + "reference": "13f788bbe3efd8f6ae4b73963a12dbf26aea0cb1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\DockerExecutorNodeSSR\\DockerExecutorNodeSSRServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\DockerExecutorNodeSSR\\": "src", + "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners" + } }, - "time": "2023-02-01T01:24:22+00:00" + "license": [ + "GAGPL-3.0-or-later" + ], + "description": "Javascript script executor for processmaker 4 SSR", + "transport-options": { + "symlink": true, + "relative": false + } }, { "name": "processmaker/docker-executor-php", "version": "1.2.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/docker-executor-php", + "reference": "92949d9a7524054901926f1523587030f8c5a686" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\DockerExecutorPhp\\DockerExecutorPhpServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\DockerExecutorPhp\\": "src", + "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners" + } + }, + "license": [ + "GAGPL-3.0-or-later" + ], + "description": "PHP script executor for processmaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/laravel-i18next", + "version": "dev-master", "source": { "type": "git", - "url": "https://github.com/ProcessMaker/docker-executor-php.git", - "reference": "92949d9a7524054901926f1523587030f8c5a686" + "url": "https://github.com/ProcessMaker/laravel-i18next.git", + "reference": "f950a439a75cd69c06235213ef9b776f29a78573" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ProcessMaker/docker-executor-php/zipball/92949d9a7524054901926f1523587030f8c5a686", - "reference": "92949d9a7524054901926f1523587030f8c5a686", + "url": "https://api.github.com/repos/ProcessMaker/laravel-i18next/zipball/f950a439a75cd69c06235213ef9b776f29a78573", + "reference": "f950a439a75cd69c06235213ef9b776f29a78573", "shasum": "" }, + "require-dev": { + "phpunit/phpunit": "^7.2" + }, + "default-branch": true, "type": "library", "extra": { "laravel": { "providers": [ - "ProcessMaker\\Package\\DockerExecutorPhp\\DockerExecutorPhpServiceProvider" + "ProcessMaker\\i18next\\ServiceProvider" ] } }, "autoload": { + "files": [ + "src/helpers.php" + ], "psr-4": { - "ProcessMaker\\ScriptRunners\\": "src/ScriptRunners", - "ProcessMaker\\Package\\DockerExecutorPhp\\": "src" + "ProcessMaker\\i18next\\": "src", + "ProcessMaker\\i18next\\Tests\\": "tests" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Dondich", + "email": "taylor@processmaker.com" + }, + { + "name": "Don Gilbert", + "email": "don@dongilbert.net" + } + ], + "description": "Transform Laravel localization files into i18next compatible format. Provides routes for i18next-xhr-backend.", + "support": { + "issues": "https://github.com/ProcessMaker/laravel-i18next/issues", + "source": "https://github.com/ProcessMaker/laravel-i18next/tree/develop" + }, + "time": "2020-11-26T14:26:47+00:00" + }, + { + "name": "processmaker/nayra", + "version": "1.10.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/nayra", + "reference": "62c91962863a628bc332b64252dc68ec5dc64787" + }, + "require-dev": { + "phpunit/phpunit": "^7.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "ProcessMaker\\": "src/ProcessMaker/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\Feature\\": "tests/Feature/", + "ProcessMaker\\": [ + "src/ProcessMaker/", + "tests/unit/ProcessMaker/", + "tests/ProcessMaker/" + ] + } + }, + "scripts": { + "test": [ + "phpunit" + ], + "coverage": [ + "phpunit -d memory_limit=-1 --coverage-html coverage" + ] + }, + "license": [ + "Apache-2.0" + ], + "description": "BPMN compliant engine", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-ab-testing", + "version": "1.0.16", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-ab-testing", + "reference": "8e291e7aa6489216dc885472efd1a61c3ef568de" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.50", + "laravel/framework": "^10.19", + "mockery/mockery": "^1.4.4", + "phpunit/phpunit": "^9.5.13", + "squizlabs/php_codesniffer": "^3.9" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageABTesting\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageABTesting\\": "src", + "Database\\Factories\\ProcessMaker\\Package\\PackageABTesting\\": "database/factories" + } + }, + "autoload-dev": { + "psr-4": { + "ProcessMaker\\": "app/", + "Tests\\": "tests/" + }, + "files": [ + "tests/mocks/alias.php" + ] + }, + "scripts": { + "cs": [ + "@php vendor/bin/php-cs-fixer fix --show-progress=dots --ansi --diff -vv 2>&1 | php php-cs-fixer-post.php", + "@php vendor/bin/phpcbf", + "@php vendor/bin/phpcs --report-emacs" + ], + "cs-check": [ + "@php vendor/bin/php-cs-fixer check --show-progress=dots --ansi --diff -vv 2>&1 | php php-cs-fixer-post.php", + "@php vendor/bin/phpcs --report-emacs" + ], + "test": [ + "@php -d zend_extension=xdebug.so -d xdebug.mode=coverage -d xdebug.start_with_request=no vendor/bin/phpunit" + ], + "test-debug": [ + "@php -d zend_extension=xdebug.so -d xdebug.mode=debug -d xdebug.start_with_request=yes vendor/bin/phpunit --no-coverage" + ], + "post-install-cmd": [ + "git config core.hooksPath ./.git-hooks" + ], + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Package AB Testing", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-actions-by-email", + "version": "1.17.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-actions-by-email", + "reference": "a94f4fd46b9b237b4012efe50e183dedc7505e8a" + }, + "require": { + "php-imap/php-imap": "^4.5.1", + "processmaker/connector-send-email": "^1.1.16" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Packages\\Connectors\\ActionsByEmail\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Packages\\Connectors\\ActionsByEmail\\": "src/", + "ProcessMaker\\Packages\\Connectors\\ActionsByEmail\\Database\\Seeds\\": "database/seeds", + "Tests\\ActionsByEmail\\": "tests/" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker Connector for Actions By Email", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-advanced-user-manager", + "version": "1.11.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-advanced-user-manager", + "reference": "d4c297e5f0305aed705925d8b40ff187e6806310" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\AdvancedUserManager\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\AdvancedUserManager\\": "src", + "Tests\\AdvancedUserManager\\": "tests/", + "ProcessMaker\\Package\\AdvancedUserManager\\Database\\Seeds\\": "database/seeds" + } + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Advanced user management for ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-ai", + "version": "1.7.20", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-ai", + "reference": "4a507adcb1886bd1ae815de2ab40107ae5bc1780" + }, + "require": { + "processmaker/processmaker": "^4.7" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageAi\\AiServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageAi\\": "src", + "ProcessMaker\\Package\\PackageAi\\Database\\Seeds\\": "database/seeds", + "Tests\\": "tests/" + } + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "Agustin Nicolas Busso", + "email": "agustin.busso@processmaker.com" + } + ], + "description": "This package provides AI features to the users", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-analytics-reporting", + "version": "1.7.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-analytics-reporting", + "reference": "47f314c4b6add7d9d8990dc9ac4902be388acd18" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageAnalyticsReporting\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageAnalyticsReporting\\": "src", + "Tests\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\PackageAnalyticsReporting\\": "database/factories" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Reporting for analytics in ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-auth", + "version": "1.18.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-auth", + "reference": "31d1c928a7fbdaebc62f1bbc44f726fb3a7bd25a" + }, + "require": { + "directorytree/ldaprecord": "^2.7.3", + "laravel/socialite": "^5.1", + "socialiteproviders/providers": "dev-saml", + "theiconic/name-parser": "^1.2" + }, + "require-dev": { + "processmaker/processmaker": "^4.2" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Auth\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Auth\\": "src", + "ProcessMaker\\Package\\Auth\\Database\\Seeds\\": "database/seeds", + "Database\\Factories\\ProcessMaker\\Package\\Auth\\": "database/factories", + "Tests\\Auth\\": "tests" + } + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Authentication package for ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-cdata", + "version": "1.4.4", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-cdata", + "reference": "4644ab53d17f88f933b5befe6f72eac5f6c0c374" + }, + "require": { + "processmaker/docker-executor-cdata": "*" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Cdata\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Cdata\\": "src", + "Tests\\": "tests/" + }, + "files": [ + "src/Helpers/global_helpers.php" + ] + }, + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "ProcessMaker 4 Plugin that provides CData integration", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-collections", + "version": "2.17.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-collections", + "reference": "eb15865ad044d9e80efecfb3088fe33d9ec29efb" + }, + "require": { + "processmaker/packages": "*", + "processmaker/processmaker": "^4.1" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Plugins\\Collections\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Plugins\\Collections\\": "src", + "Tests\\Collections\\": "tests/", + "Database\\Factories\\ProcessMaker\\Plugins\\Collections\\": "database/factories", + "Database\\Seeders\\ProcessMaker\\Plugins\\Collections\\": "database/seeders" + } + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker Collections", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-comments", + "version": "1.12.7", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-comments", + "reference": "c2ff932d90295c1110bf49210f49dc3acc6b1527" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageComments\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageComments\\": "src" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Add comments to your ProcessMaker 4 project", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-conversational-forms", + "version": "1.8.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-conversational-forms", + "reference": "1082bbf158330cea10ba023e821a2f4010d80e72" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\ConversationalForms\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\ConversationalForms\\": "src" + } + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Create conversational forms in ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-data-sources", + "version": "1.26.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-data-sources", + "reference": "5a2e2e32e4384e83960f60424fe4687f0286309c" + }, + "require": { + "vyuldashev/xml-to-array": "9999999-dev" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Packages\\Connectors\\DataSources\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Packages\\Connectors\\DataSources\\": "src/", + "ProcessMaker\\ScriptRunners\\": "tests/ScriptRunners/", + "Tests\\DataSources\\": "tests/", + "Database\\Factories\\ProcessMaker\\Plugins\\DataSources\\": "database/factories" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker BPM Connectors that provide package-data-sources service", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-decision-engine", + "version": "1.9.15", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-decision-engine", + "reference": "0aadd739e6b80067964d8dbebe2c59a056bb8fc4" + }, + "require": { + "phpoffice/phpspreadsheet": "^1.28" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageDecisionEngine\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageDecisionEngine\\": "src", + "Tests\\PackageDecisionEngine\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\PackageDecisionEngine\\": "database/factories" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Package decision engine to develop a package for ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-dynamic-ui", + "version": "1.19.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-dynamic-ui", + "reference": "6ebbc3331d2b52c32f8ed1bcd4ca8c1aff96eea1" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageDynamicUI\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageDynamicUI\\": "src", + "Tests\\DynamicUI\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\PackageDynamicUI\\": "database/factories", + "Database\\Seeders\\ProcessMaker\\Package\\PackageDynamicUI\\": "database/seeders" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Allows to use custom dashboards and menus in ProcessMaker", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-files", + "version": "1.15.2", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-files", + "reference": "ac2b22dd6ce9739b9095289a0d1a29b42fd8e5d3" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Files\\FilesServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Files\\": "src", + "Tests\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\Files\\": "database/factories" + } + }, + "description": "File manager package for ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-googleplaces", + "version": "1.11.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-googleplaces", + "reference": "60e1487143995ae643c2739d79d47ced51a84d52" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\GooglePlaces\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\GooglePlaces\\": "src" + } + }, + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "ProcessMaker 4 Plugin that provides Google Places component in the screen builder", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-photo-video", + "version": "1.5.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-photo-video", + "reference": "5aa72fa2cacb4159c7342fc8baa43526e41a013e" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PhotoVideo\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PhotoVideo\\": "src" + } + }, + "authors": [ + { + "name": "Sanja Cornelius", + "email": "sanja.cornelius@processmaker.com" + } + ], + "description": "ProcessMaker 4 Plugin that provides a photo/video capture screen builder component", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-pm-blocks", + "version": "1.6.7", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-pm-blocks", + "reference": "d591604f1104f21436bb2e926c3fcd66bfe5ffa3" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackagePmBlocks\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackagePmBlocks\\": "src", + "Tests\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\PackagePmBlocks\\": "database/factories" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "ProcessMaker plugin that provides PM Blocks.", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-process-documenter", + "version": "1.9.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-process-documenter", + "reference": "a35a869b4dd5ca51d5b18880ecc4c889b3ae8b97" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageProcessDocumenter\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageProcessDocumenter\\": "src" + } + }, + "authors": [ + { + "name": "ProcessMaker 4 Team", + "email": "support@processmaker.com" + } + ], + "description": "Generate a printable view of a process", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-process-optimization", + "version": "1.10.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-process-optimization", + "reference": "a75fa943fdc172727b13d2b3934329ca23d11c50" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageProcessOptimization\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageProcessOptimization\\": "src" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Process optimization package adds functionality to test a process in the ProcessMaker 4 modeler", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-product-analytics", + "version": "1.5.8", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-product-analytics", + "reference": "1584a22079780bf6699b72129d9df96b07dad0e6" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\ProductAnalytics\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\ProductAnalytics\\": "src", + "Tests\\": "tests/" + } + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Provides the ProcessMaker Product department with usage analytics.", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-projects", + "version": "1.3.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-projects", + "reference": "63e375359497009ba07e23bbc8684bbfa2b68f02" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Projects\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Projects\\": "src", + "Tests\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\Projects\\": "database/factories" + } + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "This package provides the ability to manage projects within ProcessMaker.", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-savedsearch", + "version": "1.33.16", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-savedsearch", + "reference": "b9b4aa86d6ce3947b4c81ed8966bb530721e19e1" + }, + "require": { + "adbario/php-dot-notation": "2.x-dev", + "phpoffice/phpspreadsheet": "^1.7", + "processmaker/package-collections": "^2.15", + "processmaker/processmaker": "^4.1" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\SavedSearch\\SavedSearchServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\SavedSearch\\": "src", + "Tests\\SavedSearch\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\SavedSearch\\": "database/factories" + } + }, + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "ProcessMaker package to save searches", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-sentry", + "version": "1.8.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-sentry", + "reference": "f5d581693bda76f6072ab5348516e387918d2d4f" + }, + "require": { + "sentry/sentry-laravel": "^3.7" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageSentry\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageSentry\\": "src" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "ProcessMaker, Inc.", + "email": "support@processmaker.com" + } + ], + "description": "Integrates Sentry.io exception tracking into ProcesMaker 4.0", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-signature", + "version": "1.12.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-signature", + "reference": "49fe00d389f75ed0a6d92bbe178b7abd7f43a1b6" + }, + "require-dev": { + "processmaker/processmaker": "4.0.*" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Signature\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Signature\\": "src/" + } + }, + "scripts": { + "post-autoload-dump": [] + }, + "authors": [ + { + "name": "Sanja Cornelius", + "email": "sanja.cornelius@processmaker.com" + } + ], + "description": "ProcessMaker 4 Plugin that provides a signature component in the screen builder", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-testing", + "version": "1.2.22", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-testing", + "reference": "a6b6d769afdf7e00d2351af672157fa038bc151b" + }, + "require": { + "box/spout": "^3.3", + "processmaker/nayra": "^1.9" + }, + "require-dev": { + "phpunit/phpunit": "^10.4" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageTesting\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageTesting\\": "src" + } + }, + "scripts": { + "post-create-project-cmd": [ + "@php rename-project.php" + ] + }, + "license": [ + "AGPL-3.0-or-later" + ], + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } + ], + "description": "Package to provide Process testing capabilities to ProcessMaker", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-translations", + "version": "2.9.0", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-translations", + "reference": "347a4b675c3c13aa8f9e10eca9ad67bbf22c7699" + }, + "require": { + "processmaker/packages": "*", + "processmaker/processmaker": "@dev" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Translations\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Translations\\": "src", + "Tests\\Translations\\": "tests/" + } + }, + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } + ], + "description": "Additional language support for ProcessMaker 4", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-versions", + "version": "1.10.1", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-versions", + "reference": "ae8efe36429127a32895239d8450841f9aa9fdee" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Versions\\PluginServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\Versions\\": "src", + "Tests\\Versions\\": "tests/", + "Database\\Factories\\ProcessMaker\\Package\\Versions\\": "database/factories" + } + }, + "authors": [ + { + "name": "Marco A. Nina Mena", + "email": "marco.antonio.nina@processmaker.com" + } + ], + "description": "ProcessMaker Versions", + "transport-options": { + "symlink": true, + "relative": false + } + }, + { + "name": "processmaker/package-vocabularies", + "version": "2.15.2", + "dist": { + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-vocabularies", + "reference": "3affa25b4bcd83669078483c34a9d5b0d493693b" + }, + "require": { + "processmaker/packages": "*", + "processmaker/processmaker": "^4.0", + "swaggest/json-schema": "^0.12.15" + }, + "type": "project", + "extra": { + "laravel": { + "providers": [ + "ProcessMaker\\Package\\PackageVocabularies\\PackageServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "ProcessMaker\\Package\\PackageVocabularies\\": "src", + "Database\\Factories\\ProcessMaker\\Package\\PackageVocabularies\\": "database/factories" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" } }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GAGPL-3.0-or-later" + "authors": [ + { + "name": "ProcessMaker 4 Development Team", + "email": "support@processmaker.com" + } ], - "description": "PHP script executor for processmaker 4", - "support": { - "issues": "https://github.com/ProcessMaker/docker-executor-php/issues", - "source": "https://github.com/ProcessMaker/docker-executor-php/tree/v1.2.0" - }, - "time": "2023-04-29T06:11:07+00:00" + "description": "Package vocabularies for processmaker", + "transport-options": { + "symlink": true, + "relative": false + } }, { - "name": "processmaker/laravel-i18next", - "version": "dev-master", - "source": { - "type": "git", - "url": "https://github.com/ProcessMaker/laravel-i18next.git", - "reference": "f950a439a75cd69c06235213ef9b776f29a78573" - }, + "name": "processmaker/package-webentry", + "version": "2.21.2", "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ProcessMaker/laravel-i18next/zipball/f950a439a75cd69c06235213ef9b776f29a78573", - "reference": "f950a439a75cd69c06235213ef9b776f29a78573", - "shasum": "" + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/package-webentry", + "reference": "3fe2e7d8bc11bdcb6079d7b1b41400640d86fb54" }, "require-dev": { - "phpunit/phpunit": "^7.2" + "processmaker/processmaker": "^4.1" }, - "default-branch": true, - "type": "library", + "type": "project", "extra": { "laravel": { "providers": [ - "ProcessMaker\\i18next\\ServiceProvider" + "ProcessMaker\\Package\\WebEntry\\WebEntryServiceProvider" ] } }, "autoload": { - "files": [ - "src/helpers.php" - ], "psr-4": { - "ProcessMaker\\i18next\\": "src", - "ProcessMaker\\i18next\\Tests\\": "tests" + "ProcessMaker\\Package\\WebEntry\\": "src", + "Tests\\": "tests/", + "TestHelpers\\": "tests/Helpers" } }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], "authors": [ { - "name": "Taylor Dondich", - "email": "taylor@processmaker.com" + "name": "Nolan Ehrstrom", + "email": "nolan.ehrstrom@processmaker.com" }, { - "name": "Don Gilbert", - "email": "don@dongilbert.net" + "name": "Dante Loayza", + "email": "dante.loayza@processmaker.com" } ], - "description": "Transform Laravel localization files into i18next compatible format. Provides routes for i18next-xhr-backend.", - "support": { - "issues": "https://github.com/ProcessMaker/laravel-i18next/issues", - "source": "https://github.com/ProcessMaker/laravel-i18next/tree/develop" - }, - "time": "2020-11-26T14:26:47+00:00" + "description": "Provide to end users the ability to complete tasks from outside the core system", + "transport-options": { + "symlink": true, + "relative": false + } }, { - "name": "processmaker/nayra", - "version": "1.10.0", - "source": { - "type": "git", - "url": "https://github.com/ProcessMaker/nayra.git", - "reference": "62c91962863a628bc332b64252dc68ec5dc64787" - }, + "name": "processmaker/packages", + "version": "4.2.30-RC3", "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ProcessMaker/nayra/zipball/62c91962863a628bc332b64252dc68ec5dc64787", - "reference": "62c91962863a628bc332b64252dc68ec5dc64787", - "shasum": "" + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/packages", + "reference": "8d7b29120e9bc3b115f59bff7af267973e35d92a" }, - "require-dev": { - "phpunit/phpunit": "^7.5" + "type": "project", + "extra": { + "processmaker": { + "enterprise": { + "connector-docusign": "0.1.8", + "connector-pdf-print": "1.7.7", + "connector-send-email": "1.9.14", + "connector-slack": "1.1.3", + "docker-executor-node-ssr": "1.0.1", + "package-actions-by-email": "1.3.13", + "package-advanced-user-manager": "0.1.2", + "package-auth": "1.4.12", + "package-collections": "2.5.16", + "package-comments": "1.2.1-RC3", + "package-conversational-forms": "1.1.7", + "package-data-sources": "1.9.15", + "package-dynamic-ui": "1.3.7", + "package-files": "1.3.10", + "package-googleplaces": "1.1.7", + "package-process-documenter": "1.0.3-RC1", + "package-process-optimization": "1.1.1-RC1", + "package-savedsearch": "1.16.11", + "package-sentry": "1.1.2", + "package-signature": "1.2.2-RC", + "package-translations": "2.1.3", + "package-versions": "1.1.4-RC", + "package-vocabularies": "2.5.6-RC", + "package-webentry": "2.3.9" + } + }, + "laravel": { + "providers": [ + "ProcessMaker\\Package\\Packages\\PackageServiceProvider" + ] + } }, - "type": "library", "autoload": { "psr-4": { - "ProcessMaker\\": "src/ProcessMaker/" + "ProcessMaker\\Package\\Packages\\": "src" } }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" + "authors": [ + { + "name": "DevOps", + "email": "devops@processmaker.com" + } ], - "description": "BPMN compliant engine", - "support": { - "issues": "https://github.com/ProcessMaker/nayra/issues", - "source": "https://github.com/ProcessMaker/nayra/tree/v1.10.0" - }, - "time": "2023-11-01T02:20:26+00:00" + "description": "Package to manage packages", + "transport-options": { + "symlink": true, + "relative": false + } }, { "name": "processmaker/pmql", "version": "1.12.1", - "source": { - "type": "git", - "url": "https://github.com/ProcessMaker/pmql.git", - "reference": "3c16be4df42f53b64ec96d17e0ffc310752bf223" - }, "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ProcessMaker/pmql/zipball/3c16be4df42f53b64ec96d17e0ffc310752bf223", - "reference": "3c16be4df42f53b64ec96d17e0ffc310752bf223", - "shasum": "" + "type": "path", + "url": "/Users/nolan/src/pm-packages/processmaker/pmql", + "reference": "3c16be4df42f53b64ec96d17e0ffc310752bf223" }, "require": { "laravel/framework": "^5.7|^6|^7|^8|^9|^10" @@ -7556,7 +10306,11 @@ "ProcessMaker\\Query\\": "src" } }, - "notification-url": "https://packagist.org/downloads/", + "autoload-dev": { + "psr-4": { + "ProcessMaker\\Query\\Tests\\": "tests/" + } + }, "authors": [ { "name": "Taylor Dondich", @@ -7564,11 +10318,10 @@ } ], "description": "An Eloquent trait that provides the pmql scope to allow converting simple sql criteria clauses to Eloquent", - "support": { - "issues": "https://github.com/ProcessMaker/pmql/issues", - "source": "https://github.com/ProcessMaker/pmql/tree/v1.12.1" - }, - "time": "2023-12-08T03:35:17+00:00" + "transport-options": { + "symlink": true, + "relative": false + } }, { "name": "psr/cache", @@ -8290,154 +11043,403 @@ "set" ], "support": { - "issues": "https://github.com/ramsey/collection/issues", - "source": "https://github.com/ramsey/collection/tree/2.0.0" + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.5", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.5" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2023-11-08T05:53:05+00:00" + }, + { + "name": "robrichards/xmlseclibs", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/robrichards/xmlseclibs.git", + "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/f8f19e58f26cdb42c54b214ff8a820760292f8df", + "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "php": ">= 5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "RobRichards\\XMLSecLibs\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "A PHP library for XML Security", + "homepage": "https://github.com/robrichards/xmlseclibs", + "keywords": [ + "security", + "signature", + "xml", + "xmldsig" + ], + "support": { + "issues": "https://github.com/robrichards/xmlseclibs/issues", + "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.1" + }, + "time": "2020-09-05T13:00:25+00:00" + }, + { + "name": "sentry/sdk", + "version": "3.6.0", + "source": { + "type": "git", + "url": "https://github.com/getsentry/sentry-php-sdk.git", + "reference": "24c235ff2027401cbea099bf88689e1a1f197c7a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/24c235ff2027401cbea099bf88689e1a1f197c7a", + "reference": "24c235ff2027401cbea099bf88689e1a1f197c7a", + "shasum": "" + }, + "require": { + "http-interop/http-factory-guzzle": "^1.0", + "sentry/sentry": "^3.22", + "symfony/http-client": "^4.3|^5.0|^6.0|^7.0" + }, + "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Sentry", + "email": "accounts@sentry.io" + } + ], + "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.", + "homepage": "http://sentry.io", + "keywords": [ + "crash-reporting", + "crash-reports", + "error-handler", + "error-monitoring", + "log", + "logging", + "sentry" + ], + "support": { + "issues": "https://github.com/getsentry/sentry-php-sdk/issues", + "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.6.0" }, "funding": [ { - "url": "https://github.com/ramsey", - "type": "github" + "url": "https://sentry.io/", + "type": "custom" }, { - "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", - "type": "tidelift" + "url": "https://sentry.io/pricing/", + "type": "custom" } ], - "time": "2022-12-31T21:50:55+00:00" + "time": "2023-12-04T10:49:33+00:00" }, { - "name": "ramsey/uuid", - "version": "4.7.5", + "name": "sentry/sentry", + "version": "3.22.1", "source": { "type": "git", - "url": "https://github.com/ramsey/uuid.git", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + "url": "https://github.com/getsentry/sentry-php.git", + "reference": "8859631ba5ab15bc1af420b0eeed19ecc6c9d81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", - "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/8859631ba5ab15bc1af420b0eeed19ecc6c9d81d", + "reference": "8859631ba5ab15bc1af420b0eeed19ecc6c9d81d", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", "ext-json": "*", - "php": "^8.0", - "ramsey/collection": "^1.2 || ^2.0" + "ext-mbstring": "*", + "guzzlehttp/promises": "^1.5.3|^2.0", + "jean85/pretty-package-versions": "^1.5|^2.0.4", + "php": "^7.2|^8.0", + "php-http/async-client-implementation": "^1.0", + "php-http/client-common": "^1.5|^2.0", + "php-http/discovery": "^1.15", + "php-http/httplug": "^1.1|^2.0", + "php-http/message": "^1.5", + "php-http/message-factory": "^1.1", + "psr/http-factory": "^1.0", + "psr/http-factory-implementation": "^1.0", + "psr/log": "^1.0|^2.0|^3.0", + "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0|^7.0", + "symfony/polyfill-php80": "^1.17" }, - "replace": { - "rhumsaa/uuid": "self.version" + "conflict": { + "php-http/client-common": "1.8.0", + "raven/raven": "*" }, "require-dev": { - "captainhook/captainhook": "^5.10", - "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", - "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", + "friendsofphp/php-cs-fixer": "^2.19|3.4.*", + "guzzlehttp/psr7": "^1.8.4|^2.1.1", + "http-interop/http-factory-guzzle": "^1.0", + "monolog/monolog": "^1.6|^2.0|^3.0", + "nikic/php-parser": "^4.10.3", + "php-http/mock-client": "^1.3", "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.3", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^8.5.14|^9.4", + "symfony/phpunit-bridge": "^5.2|^6.0", + "vimeo/psalm": "^4.17" }, "suggest": { - "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", - "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", - "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", - "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", - "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler." }, "type": "library", - "extra": { - "captainhook": { - "force-install": true - } - }, "autoload": { "files": [ "src/functions.php" ], "psr-4": { - "Ramsey\\Uuid\\": "src/" + "Sentry\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "authors": [ + { + "name": "Sentry", + "email": "accounts@sentry.io" + } + ], + "description": "A PHP SDK for Sentry (http://sentry.io)", + "homepage": "http://sentry.io", "keywords": [ - "guid", - "identifier", - "uuid" + "crash-reporting", + "crash-reports", + "error-handler", + "error-monitoring", + "log", + "logging", + "sentry" ], "support": { - "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.5" + "issues": "https://github.com/getsentry/sentry-php/issues", + "source": "https://github.com/getsentry/sentry-php/tree/3.22.1" }, "funding": [ { - "url": "https://github.com/ramsey", - "type": "github" + "url": "https://sentry.io/", + "type": "custom" }, { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" + "url": "https://sentry.io/pricing/", + "type": "custom" } ], - "time": "2023-11-08T05:53:05+00:00" + "time": "2023-11-13T11:47:28+00:00" }, { - "name": "robrichards/xmlseclibs", - "version": "3.1.1", + "name": "sentry/sentry-laravel", + "version": "3.8.2", "source": { "type": "git", - "url": "https://github.com/robrichards/xmlseclibs.git", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df" + "url": "https://github.com/getsentry/sentry-laravel.git", + "reference": "1293e5732f8405e12f000cdf5dee78c927a18de0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/robrichards/xmlseclibs/zipball/f8f19e58f26cdb42c54b214ff8a820760292f8df", - "reference": "f8f19e58f26cdb42c54b214ff8a820760292f8df", + "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/1293e5732f8405e12f000cdf5dee78c927a18de0", + "reference": "1293e5732f8405e12f000cdf5dee78c927a18de0", "shasum": "" }, "require": { - "ext-openssl": "*", - "php": ">= 5.4" + "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", + "nyholm/psr7": "^1.0", + "php": "^7.2 | ^8.0", + "sentry/sdk": "^3.4", + "sentry/sentry": "^3.20.1", + "symfony/psr-http-message-bridge": "^1.0 | ^2.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.11", + "laravel/folio": "^1.0", + "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0", + "mockery/mockery": "^1.3", + "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8.4 | ^9.3" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev", + "dev-1.x": "1.x-dev", + "dev-0.x": "0.x-dev" + }, + "laravel": { + "providers": [ + "Sentry\\Laravel\\ServiceProvider", + "Sentry\\Laravel\\Tracing\\ServiceProvider" + ], + "aliases": { + "Sentry": "Sentry\\Laravel\\Facade" + } + } + }, "autoload": { - "psr-4": { - "RobRichards\\XMLSecLibs\\": "src" + "psr-0": { + "Sentry\\Laravel\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "description": "A PHP library for XML Security", - "homepage": "https://github.com/robrichards/xmlseclibs", + "authors": [ + { + "name": "Sentry", + "email": "accounts@sentry.io" + } + ], + "description": "Laravel SDK for Sentry (https://sentry.io)", + "homepage": "https://sentry.io", "keywords": [ - "security", - "signature", - "xml", - "xmldsig" + "crash-reporting", + "crash-reports", + "error-handler", + "error-monitoring", + "laravel", + "log", + "logging", + "sentry" ], "support": { - "issues": "https://github.com/robrichards/xmlseclibs/issues", - "source": "https://github.com/robrichards/xmlseclibs/tree/3.1.1" + "issues": "https://github.com/getsentry/sentry-laravel/issues", + "source": "https://github.com/getsentry/sentry-laravel/tree/3.8.2" }, - "time": "2020-09-05T13:00:25+00:00" + "funding": [ + { + "url": "https://sentry.io/", + "type": "custom" + }, + { + "url": "https://sentry.io/pricing/", + "type": "custom" + } + ], + "time": "2023-10-12T14:38:46+00:00" }, { "name": "simplesoftwareio/simple-qrcode", @@ -8507,6 +11509,128 @@ }, "time": "2021-02-08T20:43:55+00:00" }, + { + "name": "socialiteproviders/manager", + "version": "v4.6.0", + "source": { + "type": "git", + "url": "https://github.com/SocialiteProviders/Manager.git", + "reference": "dea5190981c31b89e52259da9ab1ca4e2b258b21" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/dea5190981c31b89e52259da9ab1ca4e2b258b21", + "reference": "dea5190981c31b89e52259da9ab1ca4e2b258b21", + "shasum": "" + }, + "require": { + "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0", + "laravel/socialite": "^5.5", + "php": "^8.0" + }, + "require-dev": { + "mockery/mockery": "^1.2", + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "laravel": { + "providers": [ + "SocialiteProviders\\Manager\\ServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "SocialiteProviders\\Manager\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andy Wendt", + "email": "andy@awendt.com" + }, + { + "name": "Anton Komarev", + "email": "a.komarev@cybercog.su" + }, + { + "name": "Miguel Piedrafita", + "email": "soy@miguelpiedrafita.com" + }, + { + "name": "atymic", + "email": "atymicq@gmail.com", + "homepage": "https://atymic.dev" + } + ], + "description": "Easily add new or override built-in providers in Laravel Socialite.", + "homepage": "https://socialiteproviders.com", + "keywords": [ + "laravel", + "manager", + "oauth", + "providers", + "socialite" + ], + "support": { + "issues": "https://github.com/socialiteproviders/manager/issues", + "source": "https://github.com/socialiteproviders/manager" + }, + "time": "2024-05-04T07:57:39+00:00" + }, + { + "name": "socialiteproviders/providers", + "version": "dev-saml", + "source": { + "type": "git", + "url": "https://github.com/ProcessMaker/SocialiteProviders.git", + "reference": "b8b89005968c4cac7da237dcee3c51fe66925207" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ProcessMaker/SocialiteProviders/zipball/b8b89005968c4cac7da237dcee3c51fe66925207", + "reference": "b8b89005968c4cac7da237dcee3c51fe66925207", + "shasum": "" + }, + "require": { + "aacotroneo/laravel-saml2": "^2.1", + "ext-json": "*", + "league/oauth1-client": "^1.9", + "php": "^7.2 || ^8.0", + "socialiteproviders/manager": "~4.0" + }, + "require-dev": { + "kitetail/zttp": "^0.6.0", + "symplify/monorepo-builder": "^6.1 || ^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "SocialiteProviders\\": "src/" + } + }, + "scripts": { + "test": [ + "phpunit" + ], + "test:ci": [ + "phpunit --coverage-clover build/logs/clover.xml" + ] + }, + "license": [ + "MIT" + ], + "description": "Collection of all OAuth2 Providers for Laravel Socialite", + "support": { + "source": "https://github.com/ProcessMaker/SocialiteProviders/tree/saml" + }, + "time": "2023-09-13T03:23:38+00:00" + }, { "name": "spatie/fractalistic", "version": "2.9.5", @@ -9127,21 +12251,115 @@ "email": "shr.jafari@gmail.com" } ], - "description": " Swagger UI is a collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API.", - "homepage": "http://swagger.io", - "keywords": [ - "api", - "documentation", - "openapi", - "specification", - "swagger", - "ui" + "description": " Swagger UI is a collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API.", + "homepage": "http://swagger.io", + "keywords": [ + "api", + "documentation", + "openapi", + "specification", + "swagger", + "ui" + ], + "support": { + "issues": "https://github.com/swagger-api/swagger-ui/issues", + "source": "https://github.com/swagger-api/swagger-ui/tree/v5.10.5" + }, + "time": "2023-12-14T12:09:05+00:00" + }, + { + "name": "swaggest/json-diff", + "version": "v3.10.5", + "source": { + "type": "git", + "url": "https://github.com/swaggest/json-diff.git", + "reference": "17bfc66b330f46e12a7e574133497a290cd79ba5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swaggest/json-diff/zipball/17bfc66b330f46e12a7e574133497a290cd79ba5", + "reference": "17bfc66b330f46e12a7e574133497a290cd79ba5", + "shasum": "" + }, + "require": { + "ext-json": "*" + }, + "require-dev": { + "phperf/phpunit": "4.8.37" + }, + "type": "library", + "autoload": { + "psr-4": { + "Swaggest\\JsonDiff\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Viacheslav Poturaev", + "email": "vearutop@gmail.com" + } + ], + "description": "JSON diff/rearrange/patch/pointer library for PHP", + "support": { + "issues": "https://github.com/swaggest/json-diff/issues", + "source": "https://github.com/swaggest/json-diff/tree/v3.10.5" + }, + "time": "2023-11-17T11:12:46+00:00" + }, + { + "name": "swaggest/json-schema", + "version": "v0.12.42", + "source": { + "type": "git", + "url": "https://github.com/swaggest/php-json-schema.git", + "reference": "d23adb53808b8e2da36f75bc0188546e4cbe3b45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swaggest/php-json-schema/zipball/d23adb53808b8e2da36f75bc0188546e4cbe3b45", + "reference": "d23adb53808b8e2da36f75bc0188546e4cbe3b45", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": ">=5.4", + "phplang/scope-exit": "^1.0", + "swaggest/json-diff": "^3.8.2", + "symfony/polyfill-mbstring": "^1.19" + }, + "require-dev": { + "phperf/phpunit": "4.8.37" + }, + "suggest": { + "ext-mbstring": "For better performance" + }, + "type": "library", + "autoload": { + "psr-4": { + "Swaggest\\JsonSchema\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Viacheslav Poturaev", + "email": "vearutop@gmail.com" + } ], + "description": "High definition PHP structures with JSON-schema based validation", "support": { - "issues": "https://github.com/swagger-api/swagger-ui/issues", - "source": "https://github.com/swagger-api/swagger-ui/tree/v5.10.5" + "email": "vearutop@gmail.com", + "issues": "https://github.com/swaggest/php-json-schema/issues", + "source": "https://github.com/swaggest/php-json-schema/tree/v0.12.42" }, - "time": "2023-12-14T12:09:05+00:00" + "time": "2023-09-12T14:43:42+00:00" }, { "name": "symfony/cache", @@ -9900,6 +13118,177 @@ ], "time": "2023-10-31T17:30:12+00:00" }, + { + "name": "symfony/http-client", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-client.git", + "reference": "61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-client/zipball/61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05", + "reference": "61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/http-client-contracts": "^3.4.1", + "symfony/service-contracts": "^2.5|^3" + }, + "conflict": { + "php-http/discovery": "<1.15", + "symfony/http-foundation": "<6.3" + }, + "provide": { + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "1.0", + "symfony/http-client-implementation": "3.0" + }, + "require-dev": { + "amphp/amp": "^2.5", + "amphp/http-client": "^4.2.1", + "amphp/http-tunnel": "^1.0", + "amphp/socket": "^1.1", + "guzzlehttp/promises": "^1.4|^2.0", + "nyholm/psr7": "^1.0", + "php-http/httplug": "^1.0|^2.0", + "psr/http-client": "^1.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\HttpClient\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", + "homepage": "https://symfony.com", + "keywords": [ + "http" + ], + "support": { + "source": "https://github.com/symfony/http-client/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/http-client-contracts", + "version": "v3.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-client-contracts.git", + "reference": "20414d96f391677bf80078aa55baece78b82647d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d", + "reference": "20414d96f391677bf80078aa55baece78b82647d", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\HttpClient\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to HTTP clients", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-04-18T09:32:20+00:00" + }, { "name": "symfony/http-foundation", "version": "v6.4.0", @@ -10168,48 +13557,114 @@ "type": "tidelift" } ], - "time": "2023-11-12T18:02:22+00:00" + "time": "2023-11-12T18:02:22+00:00" + }, + { + "name": "symfony/mime", + "version": "v6.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/mime.git", + "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", + "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<5.4", + "symfony/serializer": "<6.3.2" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1|^4", + "league/html-to-markdown": "^5.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", + "symfony/serializer": "^6.3.2|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", + "keywords": [ + "mime", + "mime-type" + ], + "support": { + "source": "https://github.com/symfony/mime/tree/v6.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-10-17T11:49:05+00:00" }, { - "name": "symfony/mime", - "version": "v6.4.0", + "name": "symfony/options-resolver", + "version": "v7.1.1", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205" + "url": "https://github.com/symfony/options-resolver.git", + "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", - "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/47aa818121ed3950acd2b58d1d37d08a94f9bf55", + "reference": "47aa818121ed3950acd2b58d1d37d08a94f9bf55", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0" - }, - "conflict": { - "egulias/email-validator": "~3.0.0", - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<5.4", - "symfony/serializer": "<6.3.2" - }, - "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1|^4", - "league/html-to-markdown": "^5.0", - "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4|^6.0|^7.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3.2|^7.0" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Mime\\": "" + "Symfony\\Component\\OptionsResolver\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -10229,14 +13684,15 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Allows manipulating MIME messages", + "description": "Provides an improved replacement for the array_replace PHP function", "homepage": "https://symfony.com", "keywords": [ - "mime", - "mime-type" + "config", + "configuration", + "options" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.0" + "source": "https://github.com/symfony/options-resolver/tree/v7.1.1" }, "funding": [ { @@ -10252,7 +13708,7 @@ "type": "tidelift" } ], - "time": "2023-10-17T11:49:05+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/polyfill-ctype", @@ -10992,6 +14448,76 @@ ], "time": "2023-01-26T09:26:14+00:00" }, + { + "name": "symfony/postmark-mailer", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/postmark-mailer.git", + "reference": "b649835bb8213e41358e6990de72de20161c625f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/postmark-mailer/zipball/b649835bb8213e41358e6990de72de20161c625f", + "reference": "b649835bb8213e41358e6990de72de20161c625f", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1", + "symfony/mailer": "^5.4.21|^6.2.7|^7.0" + }, + "conflict": { + "symfony/http-foundation": "<6.2" + }, + "require-dev": { + "symfony/http-client": "^6.3|^7.0", + "symfony/webhook": "^6.3|^7.0" + }, + "type": "symfony-mailer-bridge", + "autoload": { + "psr-4": { + "Symfony\\Component\\Mailer\\Bridge\\Postmark\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Postmark Mailer Bridge", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/postmark-mailer/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, { "name": "symfony/process", "version": "v6.4.0", @@ -12019,6 +15545,109 @@ ], "time": "2023-05-04T09:38:01+00:00" }, + { + "name": "theiconic/name-parser", + "version": "v1.2.11", + "source": { + "type": "git", + "url": "https://github.com/theiconic/name-parser.git", + "reference": "9a54a713bf5b2e7fd990828147d42de16bf8a253" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theiconic/name-parser/zipball/9a54a713bf5b2e7fd990828147d42de16bf8a253", + "reference": "9a54a713bf5b2e7fd990828147d42de16bf8a253", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "php-mock/php-mock-phpunit": "^2.1", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "TheIconic\\NameParser\\": [ + "src/", + "tests/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "The Iconic", + "email": "engineering@theiconic.com.au" + } + ], + "description": "PHP library for parsing a string containing a full name into its parts", + "support": { + "issues": "https://github.com/theiconic/name-parser/issues", + "source": "https://github.com/theiconic/name-parser/tree/v1.2.11" + }, + "time": "2019-11-14T14:08:48+00:00" + }, + { + "name": "tightenco/collect", + "version": "v9.52.7", + "source": { + "type": "git", + "url": "https://github.com/tighten/collect.git", + "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d", + "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d", + "shasum": "" + }, + "require": { + "php": "^8.0", + "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0" + }, + "require-dev": { + "mockery/mockery": "^1.0", + "nesbot/carbon": "^2.23.0", + "phpunit/phpunit": "^8.3" + }, + "type": "library", + "autoload": { + "files": [ + "src/Collect/Support/helpers.php", + "src/Collect/Support/alias.php" + ], + "psr-4": { + "Tightenco\\Collect\\": "src/Collect" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylorotwell@gmail.com" + } + ], + "description": "Collect - Illuminate Collections as a separate package.", + "keywords": [ + "collection", + "laravel" + ], + "support": { + "issues": "https://github.com/tighten/collect/issues", + "source": "https://github.com/tighten/collect/tree/v9.52.7" + }, + "abandoned": "illuminate/collections", + "time": "2023-04-14T21:51:36+00:00" + }, { "name": "tijsverkoyen/css-to-inline-styles", "version": "v2.2.7", @@ -12345,6 +15974,52 @@ ], "time": "2022-03-08T17:03:00+00:00" }, + { + "name": "vyuldashev/xml-to-array", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/vyuldashev/xml-to-array.git", + "reference": "28542261014674a3e9615da335dba43c9dcf304b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vyuldashev/xml-to-array/zipball/28542261014674a3e9615da335dba43c9dcf304b", + "reference": "28542261014674a3e9615da335dba43c9dcf304b", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "larapack/dd": "^1.1", + "phpunit/phpunit": "^7.5|^9.5", + "spatie/array-to-xml": "^2.7" + }, + "default-branch": true, + "type": "library", + "autoload": { + "psr-4": { + "Vyuldashev\\XmlToArray\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Vladimir Yuldashev", + "email": "misterio92@gmail.com" + } + ], + "description": "Convert xml to an array", + "support": { + "issues": "https://github.com/vyuldashev/xml-to-array/issues", + "source": "https://github.com/vyuldashev/xml-to-array/tree/v1.1.0" + }, + "time": "2022-08-23T23:18:27+00:00" + }, { "name": "webmozart/assert", "version": "1.11.0", @@ -13009,65 +16684,6 @@ }, "time": "2020-07-09T08:09:16+00:00" }, - { - "name": "jean85/pretty-package-versions", - "version": "2.0.5", - "source": { - "type": "git", - "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", - "shasum": "" - }, - "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.17", - "jean85/composer-provided-replaced-stub-package": "^1.0", - "phpstan/phpstan": "^0.12.66", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Jean85\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alessandro Lai", - "email": "alessandro.lai85@gmail.com" - } - ], - "description": "A library to get pretty versions strings of installed dependencies", - "keywords": [ - "composer", - "package", - "release", - "versions" - ], - "support": { - "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" - }, - "time": "2021-10-08T21:21:46+00:00" - }, { "name": "laravel/dusk", "version": "v7.12.0", diff --git a/resources/js/app-layout.js b/resources/js/app-layout.js index 0eb36d34ae..68e845aeae 100644 --- a/resources/js/app-layout.js +++ b/resources/js/app-layout.js @@ -220,19 +220,9 @@ if (isMobileNavbar === "true") { }, data() { return { + display: true, }; }, - computed: { - visible() { - - - -// wont work because of replaceState. Maybe replace state listener??? - - // Do not show on process details page - return !(/process-browser\/\d+/.test(window.location.href)); - } - }, mounted() { if (this.$cookies.get("firstMounted") === "true") { $("#welcomeModal").modal("show"); diff --git a/resources/js/processes-catalogue/components/CardProcess.vue b/resources/js/processes-catalogue/components/CardProcess.vue index 49111e1425..0d9a69ac1c 100644 --- a/resources/js/processes-catalogue/components/CardProcess.vue +++ b/resources/js/processes-catalogue/components/CardProcess.vue @@ -49,7 +49,7 @@ export default { pagination, CatalogueEmpty, SearchCards, Card, }, mixins: [dataLoadingMixin], - props: ["category"], + props: ["categoryId"], data() { return { processList: [], @@ -69,7 +69,7 @@ export default { }; }, watch: { - category() { + categoryId() { this.pmql = ""; this.loadCard(); }, @@ -100,7 +100,7 @@ export default { * Build URL for Process Cards */ buildURL() { - if (this.category === undefined || this.category.id === -1) { + if (!this.categoryId || this.categoryId === 'all_processes') { return "process_bookmarks/processes?" + `&page=${this.currentPage}` + `&per_page=${this.perPage}` @@ -110,7 +110,7 @@ export default { + "&cat_status=ACTIVE" + "&order_by=name&order_direction=asc"; } - if (this.category.id === 0) { + if (this.categoryId === 'bookmarks') { return `process_bookmarks?page=${this.currentPage}` + `&per_page=${this.perPage}` + `&pmql=${encodeURIComponent(this.pmql)}` @@ -120,7 +120,7 @@ export default { } return `process_bookmarks/processes?page=${this.currentPage}` + `&per_page=${this.perPage}` - + `&category=${this.category.id}` + + `&category=${this.categoryId}` + `&pmql=${encodeURIComponent(this.pmql)}` + "&bookmark=true" + "&launchpad=true" @@ -130,8 +130,7 @@ export default { * Go to process info */ openProcessInfo(process) { - const categoryId = this.category ? this.category.id : -1; - window.history.replaceState(null, null, `/process-browser/${process.id}?categorySelected=${categoryId}`); + this.$router.push({ name: "show", params: { process: process, processId: process.id } }); this.$emit("openProcess", process); }, /** diff --git a/resources/js/processes-catalogue/components/MiniPieChart.vue b/resources/js/processes-catalogue/components/MiniPieChart.vue new file mode 100644 index 0000000000..43cbf10c24 --- /dev/null +++ b/resources/js/processes-catalogue/components/MiniPieChart.vue @@ -0,0 +1,60 @@ + + + + + \ No newline at end of file diff --git a/resources/js/processes-catalogue/components/Process.vue b/resources/js/processes-catalogue/components/Process.vue new file mode 100644 index 0000000000..f8fb5e12a8 --- /dev/null +++ b/resources/js/processes-catalogue/components/Process.vue @@ -0,0 +1,75 @@ + + + \ No newline at end of file diff --git a/resources/js/processes-catalogue/components/ProcessCollapseInfo.vue b/resources/js/processes-catalogue/components/ProcessCollapseInfo.vue index f63e62ac83..ca1ca956b4 100644 --- a/resources/js/processes-catalogue/components/ProcessCollapseInfo.vue +++ b/resources/js/processes-catalogue/components/ProcessCollapseInfo.vue @@ -1,9 +1,21 @@