Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
TelegramBot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
TelegramBot
Commits
27f55ca6
Unverified
Commit
27f55ca6
authored
Aug 23, 2016
by
Armando Lüscher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move all tests into a dedicated namespace and folder.
Update composer locks.
parent
9af785f8
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
256 additions
and
119 deletions
+256
-119
composer.json
composer.json
+1
-1
composer.lock
composer.lock
+232
-83
Bootstrap.php
tests/Bootstrap.php
+1
-1
CommandTest.php
tests/TelegramBot/Tests/Commands/CommandTest.php
+3
-3
CommandTestCase.php
tests/TelegramBot/Tests/Commands/CommandTestCase.php
+2
-2
EchoCommandTest.php
...legramBot/Tests/Commands/UserCommands/EchoCommandTest.php
+3
-4
HelpCommandTest.php
...legramBot/Tests/Commands/UserCommands/HelpCommandTest.php
+3
-3
ConversationTest.php
tests/TelegramBot/Tests/ConversationTest.php
+1
-2
ChatTest.php
tests/TelegramBot/Tests/Entities/ChatTest.php
+1
-4
InlineKeyboardButtonTest.php
...s/TelegramBot/Tests/Entities/InlineKeyboardButtonTest.php
+1
-2
MessageTest.php
tests/TelegramBot/Tests/Entities/MessageTest.php
+1
-3
ReplyToMessageTest.php
tests/TelegramBot/Tests/Entities/ReplyToMessageTest.php
+1
-2
ServerResponseTest.php
tests/TelegramBot/Tests/Entities/ServerResponseTest.php
+1
-2
UpdateTest.php
tests/TelegramBot/Tests/Entities/UpdateTest.php
+1
-1
TelegramLogTest.php
tests/TelegramBot/Tests/TelegramLogTest.php
+1
-3
TelegramTest.php
tests/TelegramBot/Tests/TelegramTest.php
+1
-1
TestCase.php
tests/TelegramBot/Tests/TestCase.php
+1
-1
TestHelpers.php
tests/TelegramBot/Tests/TestHelpers.php
+1
-1
No files found.
composer.json
View file @
27f55ca6
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
},
},
"autoload-dev"
:
{
"autoload-dev"
:
{
"psr-4"
:
{
"psr-4"
:
{
"
Tests
\\
"
:
"tests/
"
"
Longman
\\
TelegramBot
\\
Tests
\\
"
:
"tests/TelegramBot/Tests
"
}
}
},
},
"require-dev"
:
{
"require-dev"
:
{
...
...
composer.lock
View file @
27f55ca6
...
@@ -4,32 +4,32 @@
...
@@ -4,32 +4,32 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
"This file is @generated automatically"
],
],
"hash": "
3d67bf3fdb85b051d8f76a6098654143
",
"hash": "
a2247c6bf2b1cecd802b74a1c2be367c
",
"content-hash": "e896da909d596879e7fcf1a2b7898113",
"content-hash": "e896da909d596879e7fcf1a2b7898113",
"packages": [
"packages": [
{
{
"name": "guzzlehttp/guzzle",
"name": "guzzlehttp/guzzle",
"version": "6.2.
0
",
"version": "6.2.
1
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
"url": "https://github.com/guzzle/guzzle.git",
"reference": "
d094e337976dff9d8e2424e8485872194e768662
"
"reference": "
3f808fba627f2c5b69e2501217bf31af349c1427
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/
d094e337976dff9d8e2424e8485872194e768662
",
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/
3f808fba627f2c5b69e2501217bf31af349c1427
",
"reference": "
d094e337976dff9d8e2424e8485872194e768662
",
"reference": "
3f808fba627f2c5b69e2501217bf31af349c1427
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"guzzlehttp/promises": "
~
1.0",
"guzzlehttp/promises": "
^
1.0",
"guzzlehttp/psr7": "
~1
.1",
"guzzlehttp/psr7": "
^1.3
.1",
"php": ">=5.5
.0
"
"php": ">=5.5"
},
},
"require-dev": {
"require-dev": {
"ext-curl": "*",
"ext-curl": "*",
"phpunit/phpunit": "
~
4.0",
"phpunit/phpunit": "
^
4.0",
"psr/log": "
~
1.0"
"psr/log": "
^
1.0"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
...
@@ -67,7 +67,7 @@
...
@@ -67,7 +67,7 @@
"rest",
"rest",
"web service"
"web service"
],
],
"time": "2016-0
3-21 20:02:09
"
"time": "2016-0
7-15 17:22:37
"
},
},
{
{
"name": "guzzlehttp/promises",
"name": "guzzlehttp/promises",
...
@@ -122,16 +122,16 @@
...
@@ -122,16 +122,16 @@
},
},
{
{
"name": "guzzlehttp/psr7",
"name": "guzzlehttp/psr7",
"version": "1.3.
0
",
"version": "1.3.
1
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
"url": "https://github.com/guzzle/psr7.git",
"reference": "
31382fef2889136415751badebbd1cb022a4ed72
"
"reference": "
5c6447c9df362e8f8093bda8f5d8873fe5c7f65b
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/
31382fef2889136415751badebbd1cb022a4ed72
",
"url": "https://api.github.com/repos/guzzle/psr7/zipball/
5c6447c9df362e8f8093bda8f5d8873fe5c7f65b
",
"reference": "
31382fef2889136415751badebbd1cb022a4ed72
",
"reference": "
5c6447c9df362e8f8093bda8f5d8873fe5c7f65b
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -147,7 +147,7 @@
...
@@ -147,7 +147,7 @@
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-master": "1.
0
-dev"
"dev-master": "1.
4
-dev"
}
}
},
},
"autoload": {
"autoload": {
...
@@ -176,20 +176,20 @@
...
@@ -176,20 +176,20 @@
"stream",
"stream",
"uri"
"uri"
],
],
"time": "2016-0
4-13 19:56:01
"
"time": "2016-0
6-24 23:00:38
"
},
},
{
{
"name": "monolog/monolog",
"name": "monolog/monolog",
"version": "1.
19
.0",
"version": "1.
21
.0",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
"url": "https://github.com/Seldaek/monolog.git",
"reference": "
5f56ed5212dc509c8dc8caeba2715732abb32dbf
"
"reference": "
f42fbdfd53e306bda545845e4dbfd3e72edb4952
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/
5f56ed5212dc509c8dc8caeba2715732abb32dbf
",
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/
f42fbdfd53e306bda545845e4dbfd3e72edb4952
",
"reference": "
5f56ed5212dc509c8dc8caeba2715732abb32dbf
",
"reference": "
f42fbdfd53e306bda545845e4dbfd3e72edb4952
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -208,8 +208,8 @@
...
@@ -208,8 +208,8 @@
"php-console/php-console": "^3.1.3",
"php-console/php-console": "^3.1.3",
"phpunit/phpunit": "~4.5",
"phpunit/phpunit": "~4.5",
"phpunit/phpunit-mock-objects": "2.3.0",
"phpunit/phpunit-mock-objects": "2.3.0",
"raven/raven": "^0.13",
"ruflin/elastica": ">=0.90 <3.0",
"ruflin/elastica": ">=0.90 <3.0",
"sentry/sentry": "^0.13",
"swiftmailer/swiftmailer": "~5.3"
"swiftmailer/swiftmailer": "~5.3"
},
},
"suggest": {
"suggest": {
...
@@ -221,9 +221,9 @@
...
@@ -221,9 +221,9 @@
"mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
"mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
"php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
"php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
"php-console/php-console": "Allow sending log messages to Google Chrome",
"php-console/php-console": "Allow sending log messages to Google Chrome",
"raven/raven": "Allow sending log messages to a Sentry server",
"rollbar/rollbar": "Allow sending log messages to Rollbar",
"rollbar/rollbar": "Allow sending log messages to Rollbar",
"ruflin/elastica": "Allow sending log messages to an Elastic Search server"
"ruflin/elastica": "Allow sending log messages to an Elastic Search server",
"sentry/sentry": "Allow sending log messages to a Sentry server"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
...
@@ -254,20 +254,20 @@
...
@@ -254,20 +254,20 @@
"logging",
"logging",
"psr-3"
"psr-3"
],
],
"time": "2016-0
4-12 18:29:35
"
"time": "2016-0
7-29 03:23:52
"
},
},
{
{
"name": "psr/http-message",
"name": "psr/http-message",
"version": "1.0",
"version": "1.0
.1
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/php-fig/http-message.git",
"url": "https://github.com/php-fig/http-message.git",
"reference": "
85d63699f0dbedb190bbd4b0d2b9dc707ea4c298
"
"reference": "
f6561bf28d520154e4b0ec72be95418abe6d9363
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/php-fig/http-message/zipball/
85d63699f0dbedb190bbd4b0d2b9dc707ea4c298
",
"url": "https://api.github.com/repos/php-fig/http-message/zipball/
f6561bf28d520154e4b0ec72be95418abe6d9363
",
"reference": "
85d63699f0dbedb190bbd4b0d2b9dc707ea4c298
",
"reference": "
f6561bf28d520154e4b0ec72be95418abe6d9363
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -295,6 +295,7 @@
...
@@ -295,6 +295,7 @@
}
}
],
],
"description": "Common interface for HTTP messages",
"description": "Common interface for HTTP messages",
"homepage": "https://github.com/php-fig/http-message",
"keywords": [
"keywords": [
"http",
"http",
"http-message",
"http-message",
...
@@ -303,7 +304,7 @@
...
@@ -303,7 +304,7 @@
"request",
"request",
"response"
"response"
],
],
"time": "201
5-05-04 20:22:00
"
"time": "201
6-08-06 14:39:51
"
},
},
{
{
"name": "psr/log",
"name": "psr/log",
...
@@ -399,39 +400,136 @@
...
@@ -399,39 +400,136 @@
],
],
"time": "2015-06-14 21:17:01"
"time": "2015-06-14 21:17:01"
},
},
{
"name": "phpdocumentor/reflection-common",
"version": "1.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
"reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
"reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
"shasum": ""
},
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^4.6"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": [
"src"
]
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jaap van Otterdijk",
"email": "opensource@ijaap.nl"
}
],
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
"homepage": "http://www.phpdoc.org",
"keywords": [
"FQSEN",
"phpDocumentor",
"phpdoc",
"reflection",
"static analysis"
],
"time": "2015-12-27 11:43:31"
},
{
{
"name": "phpdocumentor/reflection-docblock",
"name": "phpdocumentor/reflection-docblock",
"version": "
2.0.4
",
"version": "
3.1.0
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "
d68dbdc53dc358a816f00b300704702b2eaff7b8
"
"reference": "
9270140b940ff02e58ec577c237274e92cd40cdd
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/
d68dbdc53dc358a816f00b300704702b2eaff7b8
",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/
9270140b940ff02e58ec577c237274e92cd40cdd
",
"reference": "
d68dbdc53dc358a816f00b300704702b2eaff7b8
",
"reference": "
9270140b940ff02e58ec577c237274e92cd40cdd
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": ">=5.3.3"
"php": ">=5.5",
"phpdocumentor/reflection-common": "^1.0@dev",
"phpdocumentor/type-resolver": "^0.2.0",
"webmozart/assert": "^1.0"
},
},
"require-dev": {
"require-dev": {
"phpunit/phpunit": "~4.0"
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.4"
},
},
"suggest": {
"type": "library",
"dflydev/markdown": "~1.0",
"autoload": {
"erusev/parsedown": "~1.0"
"psr-4": {
"phpDocumentor\\Reflection\\": [
"src/"
]
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"time": "2016-06-10 09:48:41"
},
{
"name": "phpdocumentor/type-resolver",
"version": "0.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
"reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/b39c7a5b194f9ed7bd0dd345c751007a41862443",
"reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443",
"shasum": ""
},
"require": {
"php": ">=5.5",
"phpdocumentor/reflection-common": "^1.0"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^5.2||^4.8.24"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-master": "
2
.0.x-dev"
"dev-master": "
1
.0.x-dev"
}
}
},
},
"autoload": {
"autoload": {
"psr-
0
": {
"psr-
4
": {
"phpDocumentor": [
"phpDocumentor
\\Reflection\\
": [
"src/"
"src/"
]
]
}
}
...
@@ -443,39 +541,39 @@
...
@@ -443,39 +541,39 @@
"authors": [
"authors": [
{
{
"name": "Mike van Riel",
"name": "Mike van Riel",
"email": "m
ike.vanriel@naenius
.com"
"email": "m
e@mikevanriel
.com"
}
}
],
],
"time": "201
5-02-03 12:10:50
"
"time": "201
6-06-10 07:14:17
"
},
},
{
{
"name": "phpspec/prophecy",
"name": "phpspec/prophecy",
"version": "v1.6.
0
",
"version": "v1.6.
1
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
"url": "https://github.com/phpspec/prophecy.git",
"reference": "
3c91bdf81797d725b14cb62906f9a4ce44235972
"
"reference": "
58a8137754bc24b25740d4281399a4a3596058e0
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/
3c91bdf81797d725b14cb62906f9a4ce44235972
",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/
58a8137754bc24b25740d4281399a4a3596058e0
",
"reference": "
3c91bdf81797d725b14cb62906f9a4ce44235972
",
"reference": "
58a8137754bc24b25740d4281399a4a3596058e0
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"doctrine/instantiator": "^1.0.2",
"doctrine/instantiator": "^1.0.2",
"php": "^5.3|^7.0",
"php": "^5.3|^7.0",
"phpdocumentor/reflection-docblock": "
~2.0
",
"phpdocumentor/reflection-docblock": "
^2.0|^3.0.2
",
"sebastian/comparator": "
~
1.1",
"sebastian/comparator": "
^
1.1",
"sebastian/recursion-context": "
~
1.0"
"sebastian/recursion-context": "
^
1.0"
},
},
"require-dev": {
"require-dev": {
"phpspec/phpspec": "
~
2.0"
"phpspec/phpspec": "
^
2.0"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-master": "1.
5
.x-dev"
"dev-master": "1.
6
.x-dev"
}
}
},
},
"autoload": {
"autoload": {
...
@@ -508,7 +606,7 @@
...
@@ -508,7 +606,7 @@
"spy",
"spy",
"stub"
"stub"
],
],
"time": "2016-0
2-15 07:46:21
"
"time": "2016-0
6-07 08:13:47
"
},
},
{
{
"name": "phpunit/php-code-coverage",
"name": "phpunit/php-code-coverage",
...
@@ -755,16 +853,16 @@
...
@@ -755,16 +853,16 @@
},
},
{
{
"name": "phpunit/phpunit",
"name": "phpunit/phpunit",
"version": "4.8.2
6
",
"version": "4.8.2
7
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "
fc1d8cd5b5de11625979125c5639347896ac2c74
"
"reference": "
c062dddcb68e44b563f66ee319ddae2b5a322a90
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/
fc1d8cd5b5de11625979125c5639347896ac2c74
",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/
c062dddcb68e44b563f66ee319ddae2b5a322a90
",
"reference": "
fc1d8cd5b5de11625979125c5639347896ac2c74
",
"reference": "
c062dddcb68e44b563f66ee319ddae2b5a322a90
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -823,7 +921,7 @@
...
@@ -823,7 +921,7 @@
"testing",
"testing",
"xunit"
"xunit"
],
],
"time": "2016-0
5-17 03:09:28
"
"time": "2016-0
7-21 06:48:14
"
},
},
{
{
"name": "phpunit/phpunit-mock-objects",
"name": "phpunit/phpunit-mock-objects",
...
@@ -999,23 +1097,23 @@
...
@@ -999,23 +1097,23 @@
},
},
{
{
"name": "sebastian/environment",
"name": "sebastian/environment",
"version": "1.3.
7
",
"version": "1.3.
8
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
"url": "https://github.com/sebastianbergmann/environment.git",
"reference": "
4e8f0da10ac5802913afc151413bc8c53b6c2716
"
"reference": "
be2c607e43ce4c89ecd60e75c6a85c126e754aea
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/
4e8f0da10ac5802913afc151413bc8c53b6c2716
",
"url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/
be2c607e43ce4c89ecd60e75c6a85c126e754aea
",
"reference": "
4e8f0da10ac5802913afc151413bc8c53b6c2716
",
"reference": "
be2c607e43ce4c89ecd60e75c6a85c126e754aea
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
"php": "
>=5.3.3
"
"php": "
^5.3.3 || ^7.0
"
},
},
"require-dev": {
"require-dev": {
"phpunit/phpunit": "
~4.4
"
"phpunit/phpunit": "
^4.8 || ^5.0
"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
...
@@ -1045,20 +1143,20 @@
...
@@ -1045,20 +1143,20 @@
"environment",
"environment",
"hhvm"
"hhvm"
],
],
"time": "2016-0
5-17 03:18:57
"
"time": "2016-0
8-18 05:49:44
"
},
},
{
{
"name": "sebastian/exporter",
"name": "sebastian/exporter",
"version": "1.2.
1
",
"version": "1.2.
2
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
"url": "https://github.com/sebastianbergmann/exporter.git",
"reference": "
7ae5513327cb536431847bcc0c10edba2701064e
"
"reference": "
42c4c2eec485ee3e159ec9884f95b431287edde4
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/
7ae5513327cb536431847bcc0c10edba2701064e
",
"url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/
42c4c2eec485ee3e159ec9884f95b431287edde4
",
"reference": "
7ae5513327cb536431847bcc0c10edba2701064e
",
"reference": "
42c4c2eec485ee3e159ec9884f95b431287edde4
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -1066,12 +1164,13 @@
...
@@ -1066,12 +1164,13 @@
"sebastian/recursion-context": "~1.0"
"sebastian/recursion-context": "~1.0"
},
},
"require-dev": {
"require-dev": {
"ext-mbstring": "*",
"phpunit/phpunit": "~4.4"
"phpunit/phpunit": "~4.4"
},
},
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-master": "1.
2
.x-dev"
"dev-master": "1.
3
.x-dev"
}
}
},
},
"autoload": {
"autoload": {
...
@@ -1111,7 +1210,7 @@
...
@@ -1111,7 +1210,7 @@
"export",
"export",
"exporter"
"exporter"
],
],
"time": "201
5-06-21 07:55:53
"
"time": "201
6-06-17 09:04:28
"
},
},
{
{
"name": "sebastian/global-state",
"name": "sebastian/global-state",
...
@@ -1254,16 +1353,16 @@
...
@@ -1254,16 +1353,16 @@
},
},
{
{
"name": "squizlabs/php_codesniffer",
"name": "squizlabs/php_codesniffer",
"version": "2.6.
0
",
"version": "2.6.
2
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"reference": "
1bcdf03b068a530ac1962ce671dead356eeba43b
"
"reference": "
4edb770cb853def6e60c93abb088ad5ac2010c83
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/
1bcdf03b068a530ac1962ce671dead356eeba43b
",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/
4edb770cb853def6e60c93abb088ad5ac2010c83
",
"reference": "
1bcdf03b068a530ac1962ce671dead356eeba43b
",
"reference": "
4edb770cb853def6e60c93abb088ad5ac2010c83
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -1328,20 +1427,20 @@
...
@@ -1328,20 +1427,20 @@
"phpcs",
"phpcs",
"standards"
"standards"
],
],
"time": "2016-0
4-03 22:58:34
"
"time": "2016-0
7-13 23:29:13
"
},
},
{
{
"name": "symfony/yaml",
"name": "symfony/yaml",
"version": "v3.
0.6
",
"version": "v3.
1.3
",
"source": {
"source": {
"type": "git",
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"url": "https://github.com/symfony/yaml.git",
"reference": "
0047c8366744a16de7516622c5b7355336afae96
"
"reference": "
1819adf2066880c7967df7180f4f662b6f0567ac
"
},
},
"dist": {
"dist": {
"type": "zip",
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/
0047c8366744a16de7516622c5b7355336afae96
",
"url": "https://api.github.com/repos/symfony/yaml/zipball/
1819adf2066880c7967df7180f4f662b6f0567ac
",
"reference": "
0047c8366744a16de7516622c5b7355336afae96
",
"reference": "
1819adf2066880c7967df7180f4f662b6f0567ac
",
"shasum": ""
"shasum": ""
},
},
"require": {
"require": {
...
@@ -1350,7 +1449,7 @@
...
@@ -1350,7 +1449,7 @@
"type": "library",
"type": "library",
"extra": {
"extra": {
"branch-alias": {
"branch-alias": {
"dev-master": "3.
0
-dev"
"dev-master": "3.
1
-dev"
}
}
},
},
"autoload": {
"autoload": {
...
@@ -1377,7 +1476,57 @@
...
@@ -1377,7 +1476,57 @@
],
],
"description": "Symfony Yaml Component",
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
"homepage": "https://symfony.com",
"time": "2016-03-04 07:55:57"
"time": "2016-07-17 14:02:08"
},
{
"name": "webmozart/assert",
"version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/webmozart/assert.git",
"reference": "bb2d123231c095735130cc8f6d31385a44c7b308"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/webmozart/assert/zipball/bb2d123231c095735130cc8f6d31385a44c7b308",
"reference": "bb2d123231c095735130cc8f6d31385a44c7b308",
"shasum": ""
},
"require": {
"php": "^5.3.3|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.6",
"sebastian/version": "^1.0.1"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"autoload": {
"psr-4": {
"Webmozart\\Assert\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bernhard Schussek",
"email": "bschussek@gmail.com"
}
],
"description": "Assertions to validate method input/output with nice error messages.",
"keywords": [
"assert",
"check",
"validate"
],
"time": "2016-08-09 15:02:57"
}
}
],
],
"aliases": [],
"aliases": [],
...
...
tests/Bootstrap.php
View file @
27f55ca6
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests
;
namespace
Longman\TelegramBot\
Tests
;
/*
/*
* Set error reporting to the max level.
* Set error reporting to the max level.
...
...
tests/
Unit
/Commands/CommandTest.php
→
tests/
TelegramBot/Tests
/Commands/CommandTest.php
View file @
27f55ca6
...
@@ -8,10 +8,10 @@
...
@@ -8,10 +8,10 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
\Commands
;
namespace
Longman\TelegramBot\Tests
\Commands
;
use
Tests\Unit
\TestCase
;
use
Longman\TelegramBot\Tests
\TestCase
;
use
Tests\TestHelpers
;
use
Longman\TelegramBot\
Tests\TestHelpers
;
use
Longman\TelegramBot\Telegram
;
use
Longman\TelegramBot\Telegram
;
/**
/**
...
...
tests/
Unit
/Commands/CommandTestCase.php
→
tests/
TelegramBot/Tests
/Commands/CommandTestCase.php
View file @
27f55ca6
...
@@ -8,9 +8,9 @@
...
@@ -8,9 +8,9 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
\Commands
;
namespace
Longman\TelegramBot\Tests
\Commands
;
use
Tests\Unit
\TestCase
;
use
Longman\TelegramBot\Tests
\TestCase
;
use
Longman\TelegramBot\Telegram
;
use
Longman\TelegramBot\Telegram
;
/**
/**
...
...
tests/
Unit
/Commands/UserCommands/EchoCommandTest.php
→
tests/
TelegramBot/Tests
/Commands/UserCommands/EchoCommandTest.php
View file @
27f55ca6
...
@@ -8,11 +8,10 @@
...
@@ -8,11 +8,10 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
\Commands\UserCommands
;
namespace
Longman\TelegramBot\Tests
\Commands\UserCommands
;
use
Tests\Unit\Commands\CommandTestCase
;
use
Longman\TelegramBot\Tests\Commands\CommandTestCase
;
use
Tests\TestHelpers
;
use
Longman\TelegramBot\Tests\TestHelpers
;
use
Longman\TelegramBot\Telegram
;
use
Longman\TelegramBot\Commands\UserCommands\EchoCommand
;
use
Longman\TelegramBot\Commands\UserCommands\EchoCommand
;
/**
/**
...
...
tests/
Unit
/Commands/UserCommands/HelpCommandTest.php
→
tests/
TelegramBot/Tests
/Commands/UserCommands/HelpCommandTest.php
View file @
27f55ca6
...
@@ -8,10 +8,10 @@
...
@@ -8,10 +8,10 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
\Commands\UserCommands
;
namespace
Longman\TelegramBot\Tests
\Commands\UserCommands
;
use
Tests\Unit
\Commands\CommandTestCase
;
use
Longman\TelegramBot\Tests
\Commands\CommandTestCase
;
use
Tests\TestHelpers
;
use
Longman\TelegramBot\
Tests\TestHelpers
;
use
Longman\TelegramBot\Commands\UserCommands\HelpCommand
;
use
Longman\TelegramBot\Commands\UserCommands\HelpCommand
;
/**
/**
...
...
tests/
Unit
/ConversationTest.php
→
tests/
TelegramBot/Tests
/ConversationTest.php
View file @
27f55ca6
...
@@ -8,9 +8,8 @@
...
@@ -8,9 +8,8 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
Tests\TestHelpers
;
use
Longman\TelegramBot\Conversation
;
use
Longman\TelegramBot\Conversation
;
use
Longman\TelegramBot\Telegram
;
use
Longman\TelegramBot\Telegram
;
...
...
tests/
Unit
/Entities/ChatTest.php
→
tests/
TelegramBot/Tests
/Entities/ChatTest.php
View file @
27f55ca6
...
@@ -8,10 +8,7 @@
...
@@ -8,10 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
Longman\TelegramBot\Entities\Chat
;
use
Tests\TestHelpers
;
/**
/**
* @package TelegramTest
* @package TelegramTest
...
...
tests/
Unit
/Entities/InlineKeyboardButtonTest.php
→
tests/
TelegramBot/Tests
/Entities/InlineKeyboardButtonTest.php
View file @
27f55ca6
...
@@ -8,10 +8,9 @@
...
@@ -8,10 +8,9 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
Longman\TelegramBot\Entities\InlineKeyboardButton
;
use
Longman\TelegramBot\Entities\InlineKeyboardButton
;
use
Longman\TelegramBot\Exception\TelegramException
;
/**
/**
* @package TelegramTest
* @package TelegramTest
...
...
tests/
Unit
/Entities/MessageTest.php
→
tests/
TelegramBot/Tests
/Entities/MessageTest.php
View file @
27f55ca6
...
@@ -8,9 +8,7 @@
...
@@ -8,9 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
Tests\TestHelpers
;
/**
/**
* @package TelegramTest
* @package TelegramTest
...
...
tests/
Unit
/Entities/ReplyToMessageTest.php
→
tests/
TelegramBot/Tests
/Entities/ReplyToMessageTest.php
View file @
27f55ca6
...
@@ -8,10 +8,9 @@
...
@@ -8,10 +8,9 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
\Longman\TelegramBot\Entities\Update
;
use
\Longman\TelegramBot\Entities\Update
;
use
\Longman\TelegramBot\Entities\ReplyToMessage
;
/**
/**
* @package TelegramTest
* @package TelegramTest
...
...
tests/
Unit
/Entities/ServerResponseTest.php
→
tests/
TelegramBot/Tests
/Entities/ServerResponseTest.php
View file @
27f55ca6
...
@@ -10,10 +10,9 @@
...
@@ -10,10 +10,9 @@
* Written by Marco Boretto
* Written by Marco Boretto
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
\Longman\TelegramBot\Entities\ServerResponse
;
use
\Longman\TelegramBot\Entities\ServerResponse
;
use
\Longman\TelegramBot\Entities\Message
;
use
\Longman\TelegramBot\Request
;
use
\Longman\TelegramBot\Request
;
/**
/**
...
...
tests/
Unit
/Entities/UpdateTest.php
→
tests/
TelegramBot/Tests
/Entities/UpdateTest.php
View file @
27f55ca6
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
\Longman\TelegramBot\Entities\Update
;
use
\Longman\TelegramBot\Entities\Update
;
...
...
tests/
Unit
/TelegramLogTest.php
→
tests/
TelegramBot/Tests
/TelegramLogTest.php
View file @
27f55ca6
...
@@ -8,13 +8,11 @@
...
@@ -8,13 +8,11 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
Longman\TelegramBot\Exception\TelegramLogException
;
use
Longman\TelegramBot\TelegramLog
;
use
Longman\TelegramBot\TelegramLog
;
use
Monolog\Handler\StreamHandler
;
use
Monolog\Handler\StreamHandler
;
use
Monolog\Logger
;
use
Monolog\Logger
;
use
Tests\TestHelpers
;
/**
/**
* @package TelegramTest
* @package TelegramTest
...
...
tests/
Unit
/TelegramTest.php
→
tests/
TelegramBot/Tests
/TelegramTest.php
View file @
27f55ca6
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
use
Longman\TelegramBot\Telegram
;
use
Longman\TelegramBot\Telegram
;
...
...
tests/
Unit
/TestCase.php
→
tests/
TelegramBot/Tests
/TestCase.php
View file @
27f55ca6
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests\Unit
;
namespace
Longman\TelegramBot\Tests
;
class
TestCase
extends
\PHPUnit_Framework_TestCase
class
TestCase
extends
\PHPUnit_Framework_TestCase
{
{
...
...
tests/TestHelpers.php
→
tests/Te
legramBot/Tests/Te
stHelpers.php
View file @
27f55ca6
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* file that was distributed with this source code.
* file that was distributed with this source code.
*/
*/
namespace
Tests
;
namespace
Longman\TelegramBot\
Tests
;
use
Longman\TelegramBot\DB
;
use
Longman\TelegramBot\DB
;
use
Longman\TelegramBot\Entities\Chat
;
use
Longman\TelegramBot\Entities\Chat
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment