| /plugin/findologicxmlexport/vendor/phpunit/php-token-stream/ |
| D | ChangeLog.md | 3 All notable changes to `sebastianbergmann/php-token-stream` are documented in this file using the [… 5 ## [2.0.2] - 2017-11-27 7 * Fixed [#69](https://github.com/sebastianbergmann/php-token-stream/issues/69): `PHP_Token_USE_FUNC… 9 ## [2.0.1] - 2017-08-20 13 * Fixed [#68](https://github.com/sebastianbergmann/php-token-stream/issues/68): Method with name `e… 15 ## [2.0.0] - 2017-08-03 17 [2.0.2]: https://github.com/sebastianbergmann/php-token-stream/compare/2.0.1...2.0.2 18 [2.0.1]: https://github.com/sebastianbergmann/php-token-stream/compare/2.0.0...2.0.1 19 [2.0.0]: https://github.com/sebastianbergmann/php-token-stream/compare/1.4.11...2.0.0
|
| D | composer.json | 2 "name": "phpunit/php-token-stream", 6 "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 7 "license": "BSD-3-Clause", 15 "issues": "https://github.com/sebastianbergmann/php-token-stream/issues" 19 "ext-tokenizer": "*" 21 "require-dev": { 25 "optimize-autoloader": true, 26 "sort-packages": true 34 "branch-alias": { 35 "dev-master": "2.0-dev"
|
| /plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/ |
| H A D | GitHub.php | 11 use OAuth\OAuth2\Token\StdOAuth2Token; 13 class GitHub extends AbstractService class 16 * Defined scopes, see http://developer.github.com/v3/oauth/ for definitions. 20 * Public read-only access (includes public user profile info, public repo info, and gists). 98 * Read-only access to organization, teams, and membership. 137 $this->baseApiUri = new Uri('https://api.github.com/'); 146 return new Uri('https://github.com/login/oauth/authorize'); 154 return new Uri('https://github.com/login/oauth/access_token'); 175 throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"'); 178 $token = new StdOAuth2Token(); [all …]
|
| H A D | Strava.php | 6 * @license http://www.opensource.org/licenses/mit-license.html MIT License 7 * @link http://strava.github.io/ 8 * @link http://strava.github.io/api/v3/oauth/ 13 use OAuth\OAuth2\Token\StdOAuth2Token; 26 * @license http://www.opensource.org/licenses/mit-license.html MIT License 27 * @link http://strava.github.io/ 28 * @link http://strava.github.io/api/v3/oauth/ 65 $this->baseApiUri = new Uri('https://www.strava.com/api/v3/'); 74 … return new Uri('https://www.strava.com/oauth/authorize?approval_prompt=' . $this->approvalPrompt); 82 return new Uri('https://www.strava.com/oauth/token'); [all …]
|
| H A D | Delicious.php | 6 * @license http://www.opensource.org/licenses/mit-license.html MIT License 7 * @link https://github.com/SciDevs/delicious-api/blob/master/api/oauth.md 12 use OAuth\OAuth2\Token\StdOAuth2Token; 24 * @license http://www.opensource.org/licenses/mit-license.html MIT License 25 * @link https://github.com/SciDevs/delicious-api/blob/master/api/oauth.md 46 $this->baseApiUri = new Uri('https://api.del.icio.us/v1/'); 64 return new Uri('https://avosapi.delicious.com/api/v1/oauth/token'); 86 'Error in retrieving token: "' . $data['error'] . '"' 90 $token = new StdOAuth2Token(); 91 $token->setAccessToken($data['access_token']); [all …]
|
| /plugin/combo/.github/ |
| H A D | bootstrap.sh | 5 # https://docs.github.com/en/actions/learn-github-actions/contexts#example-usage-of-the-github-cont… 6 # https://docs.github.com/en/actions/learn-github-actions/variables#using-the-vars-context-to-acces… 7 # https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables 11 # For example, feature-branch-1 17 echo -e "\nPull request from the branch (${BUILD_BRANCH}) to the branch (${BUILD_TARGET_BRANCH})" 20 # This value matches the branch or tag name shown on GitHub. 21 # For example, feature-branch-1 or 57/merge for a pull request 29 # echo -e "\nPush Build on the branch (${BUILD_BRANCH})" 32 # echo -e "\nPull Request Build from the branch (${TRAVIS_PULL_REQUEST_BRANCH})" 35 echo -e "\nGet boot.sh from from the branch (${BUILD_BRANCH})" [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/php-token-stream/tests/Token/ |
| D | ClassTest.php | 3 * This file is part of php-token-stream. 29 foreach ($ts as $token) { 30 if ($token instanceof PHP_Token_CLASS) { 31 $this->class = $token; 34 if ($token instanceof PHP_Token_FUNCTION) { 35 $this->function = $token; 46 $this->assertEquals('abstract', $this->class->getKeywords()); 54 $this->assertEquals('abstract,static', $this->function->getKeywords()); 62 $this->assertEquals('public', $this->function->getVisibility()); 69 foreach ($ts as $token) { [all …]
|
| /plugin/authgooglesheets/vendor/google/auth/ |
| D | README.md | 4 …e</dt><dd><a href="http://www.github.com/google/google-auth-library-php">http://www.github.com/goo… 5 …dd><a href="https://googleapis.github.io/google-auth-library-php/main/">https://googleapis.github.… 26 curl -sS https://getcomposer.org/installer | php 94 $stack->push($middleware); 104 $response = $client->get('drive/v2/files'); 107 print_r((string) $response->getBody()); 124 $client->getEmitter()->attach($subscriber); 127 #### Call using an ID Token 128 If your application is running behind Cloud Run, or using Cloud Identity-Aware 129 Proxy (IAP), you will need to fetch an ID token to access your application. For [all …]
|
| /plugin/combo/.github/workflows/ |
| H A D | php-test-reusable.yml | 3 # https://docs.github.com/en/actions/using-workflows/reusing-workflows#creating-a-reusable-workflow 7 # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs 15 permissions: # Setting permissions for the token 19 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaults 31 runs-on: ubuntu-latest 34 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_id… 39 …# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-ad… 40 php: ${{ fromJson(github.event.inputs.versions) }} 41 fail-fast: false 48 - name: Phpunit ${{ matrix.php }} [all …]
|
| /plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/ |
| D | README.md | 2 [![Software License][ico-license]](LICENSE.md) 3 [![Software Version][ico-version]](https://packagist.org/packages/meet-kinksters/php-matrix-sdk) 4 ![Software License][ico-downloads] 6 This is a Matrix client-server SDK for php 7.4+, initially copied from 7 [matrix-org/matrix-python-sdk][python-pck]. 10 - Missing E2E encryption, need php bindings for the OLM library 11 - Live sync 12 - Unit tests for the client 17 composer require meet-kinksters/php-matrix-sdk 29 $token = $client->registerWithPassword("foobar", "monkey"); [all …]
|
| /plugin/asciidocjs/node_modules/acorn/ |
| D | README.md | 3 [](https://travis-ci.org/ternj… 13 [MIT license](https://github.com/ternjs/acorn/blob/master/LICENSE). 16 [report bugs](https://github.com/ternjs/acorn/issues) or create pull 17 requests on [github](https://github.com/ternjs/acorn). For questions 34 git clone https://github.com/ternjs/acorn.git 41 When loaded in the browser (Acorn works in any JS-enabled browser more 63 [estree]: https://github.com/estree/estree 65 - **ecmaVersion**: Indicates the ECMAScript version to parse. Must be 73 - **sourceType**: Indicate the mode the code should be parsed in. Can be 77 - **onInsertedSemicolon**: If given a callback, that callback will be [all …]
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/ |
| D | README.md | 3 [](https://travis-ci.org/ternj… 12 [MIT license](https://github.com/ternjs/acorn/blob/master/LICENSE). 15 [report bugs](https://github.com/ternjs/acorn/issues) or create pull 16 requests on [github](https://github.com/ternjs/acorn). For questions 33 git clone https://github.com/ternjs/acorn.git 40 When loaded in the browser (Acorn works in any JS-enabled browser more 62 [estree]: https://github.com/estree/estree 64 - **ecmaVersion**: Indicates the ECMAScript version to parse. Must be 72 - **sourceType**: Indicate the mode the code should be parsed in. Can be 75 - **onInsertedSemicolon**: If given a callback, that callback will be [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
| D | Sniff.php | 11 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 12 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 19 * A sniff registers what token types it wishes to listen for, then, when 20 * PHP_CodeSniffer encounters that token, the sniff is invoked and passed 21 * information about where the token was found in the stack, and the 22 * PHP_CodeSniffer file in which the token was found. 28 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 29 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 58 * Called when one of the token types that this sniff is listening for 61 * The stackPtr variable indicates where in the stack the token was found. [all …]
|
| /plugin/ghissues/lang/en/ |
| D | settings.php | 9 $lang['ghissueuser'] = "GitHub Account Username"; // Github Username, used for Us… 10 $lang['ghissuerefresh'] = "GitHub Cache Expiry Interval (seconds)"; // Min time between API calls (… 11 $lang['ghissueoauth'] = "GitHub Personal OAuth Token"; // OAuth token to use in API ca…
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/ |
| D | EmptyStatementSniff.php | 3 * This file is part of the CodeAnalysis add-on for PHP_CodeSniffer. 9 * @author Manuel Pichler <mapi@manuel-pichler.de> 11 * @copyright 2007-2014 Manuel Pichler. All rights reserved. 12 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 34 * @author Manuel Pichler <mapi@manuel-pichler.de> 36 * @copyright 2007-2014 Manuel Pichler. All rights reserved. 37 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 72 * @param int $stackPtr The position of the current token 79 $tokens = $phpcsFile->getTokens(); 80 $token = $tokens[$stackPtr]; [all …]
|
| /plugin/oauth/vendor/lusitanian/oauth/ |
| H A D | composer.lock | 4 … "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", 9 "packages-dev": [ 11 "name": "phpunit/php-code-coverage", 15 "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 20 …"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/fe2466802556d3fe4… 26 "phpunit/php-file-iterator": ">=1.3.0@stable", 27 "phpunit/php-text-template": ">=1.2.0@stable", 28 "phpunit/php-token-stream": ">=1.1.3,<1.3.0" 30 "require-dev": { 34 "ext-dom": "*", [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Scope/ |
| D | MemberVarScopeSniff.php | 11 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 12 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 27 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 28 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 39 * @param PHP_CodeSniffer_File $phpcsFile The file where this token was found. 40 * @param int $stackPtr The position where the token was found. 46 $tokens = $phpcsFile->getTokens(); 49 for ($i = ($stackPtr - 1); $i > 0; $i--) { 61 $phpcsFile->addError($error, $stackPtr, 'Missing', $data); 70 * @param PHP_CodeSniffer_File $phpcsFile The file where this token was found. [all …]
|
| /plugin/gitlabapi/ |
| D | README.md | 1 # DokuWiki Plugin GitLab-Api 6 The curl library (``php-curl``) for PHP is required. 10 Download the plugin GitLab-Api into the `${dokuwiki_root}/lib/plugins` folder and restart DokuWiki … 16 - **server.default**: Set your default GitLab url without slash ending. You can override this setti… 17 - **token.default**: Fill your admin token. You can override this setting in `server.json` file. 24 <gitlab-api project-path="<NAMESPACE>/<SUB_DIRS>/<PROJECT_NAME>" /> 27 - **NAMESPACE** is the namespace of your project. 28 - **SUB_DIRS** is the sub-directories of your project if exists. 29 - **PROJECT_NAME** is the name of your project. 34 <gitlab-api project-path="ns/dir1/dir2/project" /> [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/ |
| D | DisallowShortOpenTagSniff.php | 11 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 12 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 25 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 26 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 60 * @param int $stackPtr The position of the current token 67 $tokens = $phpcsFile->getTokens(); 68 $token = $tokens[$stackPtr]; 70 if ($token['code'] === T_OPEN_TAG && $token['content'] === '<?') { 72 $data = array($token['content']); 73 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'Found', $data); [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ |
| D | EmptyClassDefinitionSniff.php | 10 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 11 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 23 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 24 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 40 * Returns the token types that this sniff is interested in. 54 * @param PHP_CodeSniffer_File $phpcsFile The file where the token was found. 56 * the token was found. 62 $tokens = $phpcsFile->getTokens(); 63 … $next = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($stackPtr + 1), null, true); 67 $phpcsFile->addError($error, $stackPtr, 'Found');
|
| D | EmptyStyleDefinitionSniff.php | 10 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 11 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 23 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 24 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 40 * Returns the token types that this sniff is interested in. 54 * @param PHP_CodeSniffer_File $phpcsFile The file where the token was found. 56 * the token was found. 62 $tokens = $phpcsFile->getTokens(); 63 $next = $phpcsFile->findNext(array(T_WHITESPACE, T_COLON), ($stackPtr + 1), null, true); 67 $phpcsFile->addError($error, $stackPtr, 'Found');
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/ |
| D | ObjectMemberCommaSniff.php | 10 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 11 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 23 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 24 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 40 * Registers the token types that this sniff wishes to listen to. 54 * @param PHP_CodeSniffer_File $phpcsFile The file where the token was found. 56 * the token was found. 62 $tokens = $phpcsFile->getTokens(); 64 …$prev = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, ($stackPtr - 1), null, true… 67 $fix = $phpcsFile->addFixableError($error, $prev, 'Missing'); [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ |
| D | ValidVariableNameSniff.php | 10 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 11 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 28 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 29 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 41 * @param int $stackPtr The position of the current token 48 $tokens = $phpcsFile->getTokens(); 50 $memberProps = $phpcsFile->getMemberProperties($stackPtr); 69 $phpcsFile->addError($error, $stackPtr, 'PrivateNoUnderscore', $data); 80 $phpcsFile->addError($error, $stackPtr, 'PublicUnderscore', $data); 90 * @param PHP_CodeSniffer_File $phpcsFile The file where this token was found. [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Classes/ |
| D | PropertyDeclarationSniff.php | 10 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 11 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 25 * @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600) 26 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence 37 * @param PHP_CodeSniffer_File $phpcsFile The file where this token was found. 38 * @param int $stackPtr The position where the token was found. 44 $tokens = $phpcsFile->getTokens(); 49 $phpcsFile->addWarning($error, $stackPtr, 'Underscore', $data); 57 $prev = $phpcsFile->findPrevious($find, ($stackPtr - 1)); 64 $phpcsFile->addError($error, $stackPtr, 'VarUsed'); [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient/ |
| D | README.md | 1  if you do not already have 49 require_once '/path/to/your-project/vendor/autoload.php'; 52 …-services`. That library provides up-to-date API wrappers for a large number of Google APIs. In or… [all …]
|