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
940ef6d0
Commit
940ef6d0
authored
Jul 06, 2015
by
LONGMAN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added travis support
parent
01827a58
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
76 additions
and
0 deletions
+76
-0
README.md
README.md
+9
-0
ruleset.xml
build/phpcs/ruleset.xml
+67
-0
.gitkeep
tests/.gitkeep
+0
-0
No files found.
README.md
View file @
940ef6d0
# PHP Telegram Bot
# PHP Telegram Bot
======================
======================
[
![Join the chat at https://gitter.im/akalongman/php-telegram-bot
](
https://badges.gitter.im/Join%20Chat.svg
)
](https://gitter.im/akalongman/php-telegram-bot?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[
![Build Status
](
https://travis-ci.org/akalongman/php-telegram-bot.svg?branch=master
)
](https://travis-ci.org/akalongman/kautilities)
[
![Latest Stable Version
](
https://img.shields.io/packagist/v/Longman/php-telegram-bot.svg
)
](https://packagist.org/packages/longman/php-telegram-bot)
[
![Total Downloads
](
https://img.shields.io/packagist/dt/Longman/php-telegram-bot.svg
)
](https://packagist.org/packages/longman/php-telegram-bot)
[
![Downloads Month
](
https://img.shields.io/packagist/dm/Longman/php-telegram-bot.svg
)
](https://packagist.org/packages/longman/php-telegram-bot)
[
![License
](
https://img.shields.io/packagist/l/Longman/php-telegram-bot.svg
)
](https://packagist.org/packages/stichoza/longman/php-telegram-bot)
A Telegram Bot based on the official
[
Telegram Bot API
](
https://core.telegram.org/bots/api
)
A Telegram Bot based on the official
[
Telegram Bot API
](
https://core.telegram.org/bots/api
)
...
...
build/phpcs/ruleset.xml
0 → 100644
View file @
940ef6d0
<?xml version="1.0"?>
<ruleset
name=
"Package"
>
<description>
The Package coding standard.
</description>
<!-- Exclude folders not containing production code -->
<exclude-pattern
type=
"relative"
>
build/*
</exclude-pattern>
<exclude-pattern
type=
"relative"
>
docs/*
</exclude-pattern>
<exclude-pattern
type=
"relative"
>
tests/*
</exclude-pattern>
<exclude-pattern
type=
"relative"
>
cache/*
</exclude-pattern>
<exclude-pattern
type=
"relative"
>
tmp/*
</exclude-pattern>
<exclude-pattern
type=
"relative"
>
logs/*
</exclude-pattern>
<!-- Exclude 3rd party libraries and Framework code. -->
<exclude-pattern
type=
"relative"
>
vendor/*
</exclude-pattern>
<!-- Include all sniffs in an external standard directory -->
<!-- Include some additional sniffs from the Generic standard -->
<rule
ref=
"PEAR.Classes.ClassDeclaration"
/>
<rule
ref=
"Squiz.Classes.SelfMemberReference"
/>
<rule
ref=
"PEAR.Commenting.InlineComment"
/>
<rule
ref=
"Generic.Files.LineEndings"
/>
<rule
ref=
"PEAR.Formatting.MultiLineAssignment"
/>
<rule
ref=
"Generic.Functions.FunctionCallArgumentSpacing"
/>
<rule
ref=
"PEAR.NamingConventions.ValidClassName"
/>
<rule
ref=
"Generic.NamingConventions.UpperCaseConstantName"
/>
<rule
ref=
"Generic.PHP.DisallowShortOpenTag"
/>
<rule
ref=
"Generic.PHP.DeprecatedFunctions"
/>
<rule
ref=
"Generic.PHP.ForbiddenFunctions"
/>
<rule
ref=
"Squiz.Operators.IncrementDecrementUsage"
>
<exclude
name=
"Squiz.Operators.IncrementDecrementUsage.processAssignment"
/>
</rule>
<rule
ref=
"Squiz.Scope.StaticThisUsage"
/>
<rule
ref=
"Squiz.WhiteSpace.ScopeClosingBrace"
/>
<!-- Lines can be 85 chars long, but never show errors -->
<rule
ref=
"Generic.Files.LineLength"
>
<properties>
<property
name=
"lineLimit"
value=
"150"
/>
<property
name=
"absoluteLineLimit"
value=
"0"
/>
</properties>
</rule>
<!-- Use Unix newlines -->
<rule
ref=
"Generic.Files.LineEndings"
>
<properties>
<property
name=
"eolChar"
value=
"\n"
/>
</properties>
</rule>
<!-- This message is not required as spaces are allowed for alignment -->
<rule
ref=
"Generic.Functions.FunctionCallArgumentSpacing.TooMuchSpaceAfterComma"
>
<severity>
0
</severity>
</rule>
</ruleset>
tests/.gitkeep
deleted
100644 → 0
View file @
01827a58
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