Skip to content

Commit 2d809b0

Browse files
author
Denis Mysenko
committed
+ Initial structure
1 parent 30740c8 commit 2d809b0

File tree

4 files changed

+70
-0
lines changed

4 files changed

+70
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor
2+
composer.lock

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: php
2+
3+
php:
4+
- '5.5'
5+
- '5.6'
6+
- '7.0'
7+
8+
before_script:
9+
- composer install --dev
10+
11+
addons:
12+
code_climate:
13+
repo_token: efdc0e37fa8e202c7744259f3695262393ebad37b2943e1c70aba01e50cdd92f

composer.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "dusterio/laravel-aws-worker",
3+
"type": "library",
4+
"description": "Run Laravel (or Lumen) tasks and queue listeners inside of AWS Elastic Beanstalk workers",
5+
"keywords": ["php","laravel","lumen","sqs","aws","elasticbeanstalk","worker"],
6+
"homepage": "https://github.com/dusterio/laravel-aws-worker",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Denis Mysenko",
11+
"email": "[email protected]",
12+
"homepage": "https://www.mysenko.com"
13+
}
14+
],
15+
"require": {
16+
"php": ">=5.5.0",
17+
"illuminate/support": "5.*",
18+
"illuminate/queue": "5.*",
19+
"illuminate/bus": "5.*",
20+
"aws/aws-sdk-php": "~3.0"
21+
},
22+
"require-dev": {
23+
"phpunit/phpunit": "3.7.*",
24+
"codeclimate/php-test-reporter": "dev-master"
25+
},
26+
"autoload": {
27+
"psr-4": {
28+
"Dusterio\\AwsWorker\\": "src/"
29+
}
30+
}
31+
}

phpunit.xml.dist

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
colors="true"
5+
convertErrorsToExceptions="true"
6+
convertNoticesToExceptions="true"
7+
convertWarningsToExceptions="true"
8+
processIsolation="false"
9+
stopOnFailure="false"
10+
syntaxCheck="false"
11+
bootstrap="tests/bootstrap.php"
12+
>
13+
<testsuites>
14+
<testsuite name="PlainSqs library Test Suite">
15+
<directory suffix=".php">tests/PlainSqs/</directory>
16+
</testsuite>
17+
</testsuites>
18+
19+
<filter>
20+
<whitelist>
21+
<directory suffix=".php">src/</directory>
22+
</whitelist>
23+
</filter>
24+
</phpunit>

0 commit comments

Comments
 (0)