Skip to content

Commit 8f8a6ed

Browse files
committed
Initial Commit
1 parent 68c2e3a commit 8f8a6ed

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "sally/laravel-vk-sdk",
3+
"description": "Laravel VK SDK lets you develop vk Bots in PHP easily! Supports Laravel out of the box. VK API API is an HTTP-based interface created for developers keen on building bots for VK.",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "n0tm",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"phpunit/phpunit": "^8.5"
14+
},
15+
"autoload": {
16+
"Sally\\VkSdk": "src/"
17+
}
18+
}

phpunit.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit bootstrap="vendor/autoload.php"
3+
colors="true"
4+
executionOrder="random"
5+
resolveDependencies="true">
6+
<testsuites>
7+
<testsuite name="Main">
8+
<directory>tests/</directory>
9+
</testsuite>
10+
</testsuites>
11+
12+
<filter>
13+
<whitelist>
14+
<directory suffix=".php">src/</directory>
15+
</whitelist>
16+
</filter>
17+
</phpunit>

src/VkSdkServiceProvider.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Sally\VkSdk;
4+
5+
class VkSdkServiceProvider
6+
{
7+
8+
}

0 commit comments

Comments
 (0)