1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00

Updates SDK exmaples

This commit is contained in:
eldadfux 2019-09-12 19:02:13 +03:00
parent f97baa1526
commit 4e5151d99b
25 changed files with 118 additions and 110 deletions

View file

@ -1,7 +1,7 @@
# [Appwrite SDK for Javascript](https://appwrite.io)   [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Appwrite%20is%20a%20backend%20as%20a%20service%20for%20building%20web%20or%20mobile%20apps&url=http%3A%2F%2Fappwrite.io&via=appwrite_io&hashtags=JS%2Cjavascript%2Creactjs%2Cangular%2Cios%2Candroid)
![License](https://img.shields.io/github/license/appwrite/sdk-for-js.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-latest-blue.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-0.1.15-blue.svg?v=1)
Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
@ -9,7 +9,7 @@ Appwrite backend as a service cuts up to 70% of the time and costs required for
![Appwrite](https://appwrite.io/images/github.png)
**API Version: latest**
**API Version: 0.1.15**
## Installation

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.auth.register('email@example.com', 'password', 'https://example.com');
let promise = sdk.auth.register('email@example.com', 'password', 'https://example.com', 'https://example.com', 'https://example.com');
promise.then(function (response) {
console.log(response);

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.projects.createTask('[PROJECT_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com');
let promise = sdk.projects.createTask('[PROJECT_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');
promise.then(function (response) {
console.log(response);

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.projects.updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');
let promise = sdk.projects.updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com');
promise.then(function (response) {
console.log(response);

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.projects.updateWebhook('[PROJECT_ID]', '[WEBHOOK_ID]', '[NAME]', [], '[URL]', 1);
let promise = sdk.projects.updateWebhook('[PROJECT_ID]', '[WEBHOOK_ID]', '[NAME]', [], '[URL]', 0);
promise.then(function (response) {
console.log(response);

View file

@ -737,12 +737,12 @@
* @param {string} email
* @param {string} password
* @param {string} redirect
* @param {string} name
* @param {string} success
* @param {string} failure
* @param {string} name
* @throws {Error}
* @return {null} */
register: function(email, password, redirect, name = '', success = '', failure = '') {
register: function(email, password, redirect, success, failure, name = '') {
if(email === undefined) {
throw new Error('Missing required parameter: "email"');
}
@ -755,13 +755,21 @@
throw new Error('Missing required parameter: "redirect"');
}
if(success === undefined) {
throw new Error('Missing required parameter: "success"');
}
if(failure === undefined) {
throw new Error('Missing required parameter: "failure"');
}
let path = '/auth/register';
return iframe('post', path, {project: config.project,
'email': email,
'password': password,
'name': name,
'redirect': redirect,
'name': name,
'success': success,
'failure': failure
});

View file

@ -30,10 +30,12 @@ let path='/auth/recovery';return http.post(path,{'content-type':'application/jso
if(token===undefined){throw new Error('Missing required parameter: "token"')}
if(passwordA===undefined){throw new Error('Missing required parameter: "passwordA"')}
if(passwordB===undefined){throw new Error('Missing required parameter: "passwordB"')}
let path='/auth/recovery/reset';return http.put(path,{'content-type':'application/json'},{'userId':userId,'token':token,'password-a':passwordA,'password-b':passwordB})},register:function(email,password,redirect,name='',success='',failure=''){if(email===undefined){throw new Error('Missing required parameter: "email"')}
let path='/auth/recovery/reset';return http.put(path,{'content-type':'application/json'},{'userId':userId,'token':token,'password-a':passwordA,'password-b':passwordB})},register:function(email,password,redirect,success,failure,name=''){if(email===undefined){throw new Error('Missing required parameter: "email"')}
if(password===undefined){throw new Error('Missing required parameter: "password"')}
if(redirect===undefined){throw new Error('Missing required parameter: "redirect"')}
let path='/auth/register';return iframe('post',path,{project:config.project,'email':email,'password':password,'name':name,'redirect':redirect,'success':success,'failure':failure})},confirm:function(userId,token){if(userId===undefined){throw new Error('Missing required parameter: "userId"')}
if(success===undefined){throw new Error('Missing required parameter: "success"')}
if(failure===undefined){throw new Error('Missing required parameter: "failure"')}
let path='/auth/register';return iframe('post',path,{project:config.project,'email':email,'password':password,'redirect':redirect,'name':name,'success':success,'failure':failure})},confirm:function(userId,token){if(userId===undefined){throw new Error('Missing required parameter: "userId"')}
if(token===undefined){throw new Error('Missing required parameter: "token"')}
let path='/auth/register/confirm';return http.post(path,{'content-type':'application/json'},{'userId':userId,'token':token})},confirmResend:function(redirect){if(redirect===undefined){throw new Error('Missing required parameter: "redirect"')}
let path='/auth/register/confirm/resend';return http.post(path,{'content-type':'application/json'},{'redirect':redirect})}};let avatars={getBrowser:function(code,width=100,height=100,quality=100){if(code===undefined){throw new Error('Missing required parameter: "code"')}

View file

@ -1,7 +1,7 @@
# [Appwrite SDK for NodeJS](https://appwrite.io)   [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Appwrite%20is%20a%20backend%20as%20a%20service%20for%20building%20web%20or%20mobile%20apps&url=http%3A%2F%2Fappwrite.io&via=appwrite_io&hashtags=JS%2Cjavascript%2Creactjs%2Cangular%2Cios%2Candroid)
![License](https://img.shields.io/github/license/appwrite/sdk-for-node.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-latest-blue.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-0.1.15-blue.svg?v=1)
Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
@ -9,7 +9,7 @@ Appwrite backend as a service cuts up to 70% of the time and costs required for
![Appwrite](https://appwrite.io/images/github.png)
**API Version: latest**
**API Version: 0.1.15**
## Installation

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.auth.register('email@example.com', 'password', 'https://example.com');
let promise = sdk.auth.register('email@example.com', 'password', 'https://example.com', 'https://example.com', 'https://example.com');
promise.then(function (response) {
console.log(response);

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.projects.createTask('[PROJECT_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com');
let promise = sdk.projects.createTask('[PROJECT_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');
promise.then(function (response) {
console.log(response);

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.projects.updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');
let promise = sdk.projects.updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com');
promise.then(function (response) {
console.log(response);

View file

@ -5,7 +5,7 @@ sdk
setKey('')
;
let promise = sdk.projects.updateWebhook('[PROJECT_ID]', '[WEBHOOK_ID]', '[NAME]', [], '[URL]', 1);
let promise = sdk.projects.updateWebhook('[PROJECT_ID]', '[WEBHOOK_ID]', '[NAME]', [], '[URL]', 0);
promise.then(function (response) {
console.log(response);

View file

@ -199,21 +199,21 @@ class Auth extends Service {
* @param string email
* @param string password
* @param string redirect
* @param string name
* @param string success
* @param string failure
* @param string name
* @throws Exception
* @return {}
*/
async register(email, password, redirect, name = '', success = '', failure = '') {
async register(email, password, redirect, success, failure, name = '') {
let path = '/auth/register';
return await this.client.call('post', path, {'content-type': 'application/json'},
{
'email': email,
'password': password,
'name': name,
'redirect': redirect,
'name': name,
'success': success,
'failure': failure
});

View file

@ -1,7 +1,7 @@
# [Appwrite SDK for PHP](https://appwrite.io)   [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Appwrite%20is%20a%20backend%20as%20a%20service%20for%20building%20web%20or%20mobile%20apps&url=http%3A%2F%2Fappwrite.io&via=appwrite_io&hashtags=JS%2Cjavascript%2Creactjs%2Cangular%2Cios%2Candroid)
![License](https://img.shields.io/github/license/appwrite/sdk-for-php.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-latest-blue.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-0.1.15-blue.svg?v=1)
Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
@ -9,7 +9,7 @@ Appwrite backend as a service cuts up to 70% of the time and costs required for
![Appwrite](https://appwrite.io/images/github.png)
**API Version: latest**
**API Version: 0.1.15**
## Installation

View file

@ -126,8 +126,8 @@ When not using the success or failure redirect arguments this endpoint will resu
| --- | --- | --- | --- |
| email | string | Account email | |
| password | string | User password | |
| name | string | User name | |
| redirect | string | Confirmation page to redirect user after confirm token has been sent to user email | |
| name | string | User name | |
| success | string | Redirect when registration succeed | |
| failure | string | Redirect when registration failed | |

View file

@ -12,4 +12,4 @@ $client
$auth = new Auth($client);
$result = $auth->register('email@example.com', 'password', 'https://example.com');
$result = $auth->register('email@example.com', 'password', 'https://example.com', 'https://example.com', 'https://example.com');

View file

@ -12,4 +12,4 @@ $client
$projects = new Projects($client);
$result = $projects->createTask('[PROJECT_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com');
$result = $projects->createTask('[PROJECT_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');

View file

@ -12,4 +12,4 @@ $client
$projects = new Projects($client);
$result = $projects->updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 1, 'GET', 'https://example.com');
$result = $projects->updateTask('[PROJECT_ID]', '[TASK_ID]', '[NAME]', 'play', '', 0, 'GET', 'https://example.com');

View file

@ -12,4 +12,4 @@ $client
$projects = new Projects($client);
$result = $projects->updateWebhook('[PROJECT_ID]', '[WEBHOOK_ID]', '[NAME]', [], '[URL]', 1);
$result = $projects->updateWebhook('[PROJECT_ID]', '[WEBHOOK_ID]', '[NAME]', [], '[URL]', 0);

View file

@ -219,21 +219,21 @@ class Auth extends Service
* @param string $email
* @param string $password
* @param string $redirect
* @param string $name
* @param string $success
* @param string $failure
* @param string $name
* @throws Exception
* @return array
*/
public function register($email, $password, $redirect, $name = '', $success = '', $failure = '')
public function register($email, $password, $redirect, $success, $failure, $name = '')
{
$path = str_replace([], [], '/auth/register');
$params = [];
$params['email'] = $email;
$params['password'] = $password;
$params['name'] = $name;
$params['redirect'] = $redirect;
$params['name'] = $name;
$params['success'] = $success;
$params['failure'] = $failure;

View file

@ -1,7 +1,7 @@
# [Appwrite SDK for Python](https://appwrite.io)   [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Appwrite%20is%20a%20backend%20as%20a%20service%20for%20building%20web%20or%20mobile%20apps&url=http%3A%2F%2Fappwrite.io&via=appwrite_io&hashtags=JS%2Cjavascript%2Creactjs%2Cangular%2Cios%2Candroid)
![License](https://img.shields.io/github/license/appwrite/sdk-for-python.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-latest-blue.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-0.1.15-blue.svg?v=1)
**WORK IN PROGRESS - NOT READY FOR USAGE - Want to help us improve this client SDK? Send a pull request to Appwrite [SDK generator repository](https://github.com/appwrite/sdk-generator).**
@ -11,7 +11,7 @@ Appwrite backend as a service cuts up to 70% of the time and costs required for
![Appwrite](https://appwrite.io/images/github.png)
**API Version: latest**
**API Version: 0.1.15**
## Installation

View file

@ -84,15 +84,15 @@ class Auth(Service):
return self.client.call('put', path, {
}, params)
def register(self, email, password, redirect, name='', success='', failure=''):
def register(self, email, password, redirect, success, failure, name=''):
"""Register User"""
params = {}
path = '/auth/register'
params['email'] = email
params['password'] = password
params['name'] = name
params['redirect'] = redirect
params['name'] = name
params['success'] = success
params['failure'] = failure

View file

@ -1,7 +1,7 @@
# [Appwrite SDK for Ruby](https://appwrite.io)   [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Appwrite%20is%20a%20backend%20as%20a%20service%20for%20building%20web%20or%20mobile%20apps&url=http%3A%2F%2Fappwrite.io&via=appwrite_io&hashtags=JS%2Cjavascript%2Creactjs%2Cangular%2Cios%2Candroid)
![License](https://img.shields.io/github/license/appwrite/sdk-for-ruby.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-latest-blue.svg?v=1)
![Version](https://img.shields.io/badge/api%20version-0.1.15-blue.svg?v=1)
**WORK IN PROGRESS - NOT READY FOR USAGE - Want to help us improve this client SDK? Send a pull request to Appwrite [SDK generator repository](https://github.com/appwrite/sdk-generator).**
@ -11,7 +11,7 @@ Appwrite backend as a service cuts up to 70% of the time and costs required for
![Appwrite](https://appwrite.io/images/github.png)
**API Version: latest**
**API Version: 0.1.15**
## Installation

View file

@ -89,14 +89,14 @@ module Appwrite
}, params);
end
def register(email:, password:, redirect:, name: '', success: '', failure: '')
def register(email:, password:, redirect:, success:, failure:, name: '')
path = '/auth/register'
params = {
'email': email,
'password': password,
'name': name,
'redirect': redirect,
'name': name,
'success': success,
'failure': failure
}

142
composer.lock generated
View file

@ -12,12 +12,12 @@
"source": {
"type": "git",
"url": "https://github.com/appwrite/php-clamav.git",
"reference": "11595495a4b4f640db4f2376c5beba941ebc0bf9"
"reference": "f59dee89963a868bd2675ba47132a92f981acebb"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appwrite/php-clamav/zipball/11595495a4b4f640db4f2376c5beba941ebc0bf9",
"reference": "11595495a4b4f640db4f2376c5beba941ebc0bf9",
"url": "https://api.github.com/repos/appwrite/php-clamav/zipball/f59dee89963a868bd2675ba47132a92f981acebb",
"reference": "f59dee89963a868bd2675ba47132a92f981acebb",
"shasum": ""
},
"require": {
@ -49,7 +49,7 @@
"clamav",
"php"
],
"time": "2019-07-30 19:07:14"
"time": "2019-09-08 17:36:32"
},
{
"name": "appwrite/sdk-generator",
@ -57,12 +57,12 @@
"source": {
"type": "git",
"url": "https://github.com/appwrite/sdk-generator.git",
"reference": "65be1ff307565fccbd409f2ee7b0113afdde6548"
"reference": "f3df64fba00218efc3fe02061359ad48ea939524"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/65be1ff307565fccbd409f2ee7b0113afdde6548",
"reference": "65be1ff307565fccbd409f2ee7b0113afdde6548",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/f3df64fba00218efc3fe02061359ad48ea939524",
"reference": "f3df64fba00218efc3fe02061359ad48ea939524",
"shasum": ""
},
"require": {
@ -94,7 +94,7 @@
}
],
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"time": "2019-08-20 16:14:16"
"time": "2019-09-11 21:05:08"
},
{
"name": "bacon/bacon-qr-code",
@ -1411,12 +1411,12 @@
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
"reference": "38341bbefdaf496e0752c90b053c54ed23d57f98"
"reference": "1fcf9143e2cb4da5ce77cace7aee927c1c7cf7c7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/twigphp/Twig/zipball/38341bbefdaf496e0752c90b053c54ed23d57f98",
"reference": "38341bbefdaf496e0752c90b053c54ed23d57f98",
"url": "https://api.github.com/repos/twigphp/Twig/zipball/1fcf9143e2cb4da5ce77cace7aee927c1c7cf7c7",
"reference": "1fcf9143e2cb4da5ce77cace7aee927c1c7cf7c7",
"shasum": ""
},
"require": {
@ -1450,19 +1450,19 @@
"authors": [
{
"name": "Fabien Potencier",
"role": "Lead Developer",
"email": "fabien@symfony.com",
"homepage": "http://fabien.potencier.org"
"homepage": "http://fabien.potencier.org",
"role": "Lead Developer"
},
{
"name": "Twig Team",
"role": "Contributors",
"homepage": "https://twig.symfony.com/contributors"
"homepage": "https://twig.symfony.com/contributors",
"role": "Contributors"
},
{
"name": "Armin Ronacher",
"role": "Project Founder",
"email": "armin.ronacher@active-4.com"
"email": "armin.ronacher@active-4.com",
"role": "Project Founder"
}
],
"description": "Twig, the flexible, fast, and secure template language for PHP",
@ -1470,7 +1470,7 @@
"keywords": [
"templating"
],
"time": "2019-08-21 05:13:01"
"time": "2019-09-07 07:25:39"
},
{
"name": "utopia-php/abuse",
@ -1899,18 +1899,18 @@
"authors": [
{
"name": "Arne Blankerts",
"role": "Developer",
"email": "arne@blankerts.de"
"email": "arne@blankerts.de",
"role": "Developer"
},
{
"name": "Sebastian Heuer",
"role": "Developer",
"email": "sebastian@phpeople.de"
"email": "sebastian@phpeople.de",
"role": "Developer"
},
{
"name": "Sebastian Bergmann",
"role": "Developer",
"email": "sebastian@phpunit.de"
"email": "sebastian@phpunit.de",
"role": "Developer"
}
],
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
@ -1965,35 +1965,33 @@
},
{
"name": "phpdocumentor/reflection-common",
"version": "1.0.1",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
"reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
"reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
"reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
"reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
"shasum": ""
},
"require": {
"php": ">=5.5"
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^4.6"
"phpunit/phpunit": "~6"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": [
"src"
]
"phpDocumentor\\Reflection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@ -2015,30 +2013,30 @@
"reflection",
"static analysis"
],
"time": "2017-09-11T18:02:19+00:00"
"time": "2018-08-07T13:53:10+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
"version": "4.3.1",
"version": "4.3.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c"
"reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c",
"reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
"reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
"shasum": ""
},
"require": {
"php": "^7.0",
"phpdocumentor/reflection-common": "^1.0.0",
"phpdocumentor/type-resolver": "^0.4.0",
"phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
"phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
"webmozart/assert": "^1.0"
},
"require-dev": {
"doctrine/instantiator": "~1.0.5",
"doctrine/instantiator": "^1.0.5",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.4"
},
@ -2066,41 +2064,40 @@
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"time": "2019-04-30T17:48:53+00:00"
"time": "2019-09-12T14:27:41+00:00"
},
{
"name": "phpdocumentor/type-resolver",
"version": "0.4.0",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
"reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
"reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
"reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
"reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
"shasum": ""
},
"require": {
"php": "^5.5 || ^7.0",
"phpdocumentor/reflection-common": "^1.0"
"php": "^7.1",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^5.2||^4.8.24"
"ext-tokenizer": "^7.1",
"mockery/mockery": "~1",
"phpunit/phpunit": "^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": [
"src/"
]
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@ -2113,7 +2110,8 @@
"email": "me@mikevanriel.com"
}
],
"time": "2017-07-14T14:27:02+00:00"
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"time": "2019-08-22T18:11:29+00:00"
},
{
"name": "phpspec/prophecy",
@ -2121,12 +2119,12 @@
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
"reference": "93d6a38116e46a885d13f5fb5db8e0a2cd52a62e"
"reference": "bcdce71d674f4f7b86df0ff3a418d43b7fe141f7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/93d6a38116e46a885d13f5fb5db8e0a2cd52a62e",
"reference": "93d6a38116e46a885d13f5fb5db8e0a2cd52a62e",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/bcdce71d674f4f7b86df0ff3a418d43b7fe141f7",
"reference": "bcdce71d674f4f7b86df0ff3a418d43b7fe141f7",
"shasum": ""
},
"require": {
@ -2176,7 +2174,7 @@
"spy",
"stub"
],
"time": "2019-08-28T15:54:17+00:00"
"time": "2019-09-09T15:23:21+00:00"
},
{
"name": "phpunit/php-code-coverage",
@ -2436,12 +2434,12 @@
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "928b6e5476f86a3ddb71eb23005b560d5dd73a23"
"reference": "d434b33075b4b6f3575660acfdb0daafd0b32515"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/928b6e5476f86a3ddb71eb23005b560d5dd73a23",
"reference": "928b6e5476f86a3ddb71eb23005b560d5dd73a23",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d434b33075b4b6f3575660acfdb0daafd0b32515",
"reference": "d434b33075b4b6f3575660acfdb0daafd0b32515",
"shasum": ""
},
"require": {
@ -2512,7 +2510,7 @@
"testing",
"xunit"
],
"time": "2019-09-02T06:29:35+00:00"
"time": "2019-09-09T11:32:03+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
@ -2685,12 +2683,12 @@
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
"reference": "1c91ab3fb351373cf86ead6006ea9daa8e4ce027"
"reference": "520187a48d1fd3714dd4ebfd8eb914a4d69d26a7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1c91ab3fb351373cf86ead6006ea9daa8e4ce027",
"reference": "1c91ab3fb351373cf86ead6006ea9daa8e4ce027",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/520187a48d1fd3714dd4ebfd8eb914a4d69d26a7",
"reference": "520187a48d1fd3714dd4ebfd8eb914a4d69d26a7",
"shasum": ""
},
"require": {
@ -2730,7 +2728,7 @@
"environment",
"hhvm"
],
"time": "2019-07-02T07:44:59+00:00"
"time": "2019-09-07T09:51:27+00:00"
},
{
"name": "sebastian/exporter",
@ -2738,12 +2736,12 @@
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
"reference": "636773fb0b23bd70fff886ffe215ed47354af863"
"reference": "05e2a220e5e41ed9e8a38d4a5a1cf9bf1fa9fded"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/636773fb0b23bd70fff886ffe215ed47354af863",
"reference": "636773fb0b23bd70fff886ffe215ed47354af863",
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/05e2a220e5e41ed9e8a38d4a5a1cf9bf1fa9fded",
"reference": "05e2a220e5e41ed9e8a38d4a5a1cf9bf1fa9fded",
"shasum": ""
},
"require": {
@ -2797,7 +2795,7 @@
"export",
"exporter"
],
"time": "2019-08-14T15:08:01+00:00"
"time": "2019-09-10T15:13:45+00:00"
},
{
"name": "sebastian/global-state",