Skip to content

Commit f8b2350

Browse files
committed
[EH] add missing basic files in root
1 parent d9a8229 commit f8b2350

File tree

6 files changed

+92
-0
lines changed

6 files changed

+92
-0
lines changed

.gitignore

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

.styleci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
preset: laravel
2+
3+
disabled:
4+
- single_class_element_per_statement

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: php
2+
3+
php:
4+
- 7.0
5+
- 7.1
6+
7+
env:
8+
matrix:
9+
- COMPOSER_FLAGS="--prefer-lowest"
10+
- COMPOSER_FLAGS=""
11+
12+
before_script:
13+
- travis_retry composer self-update
14+
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
15+
16+
script:
17+
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
18+
19+
after_script:
20+
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
All notable changes to `:package_name` will be documented in this file
4+
5+
## 1.0.3 - 2017-09-27
6+
7+
- add missing basic files to root
8+
9+
## 1.0.2 - 2017-09-26
10+
11+
- initial release

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# The MIT License (MIT)
2+
3+
Copyright (c) webfactor media GmbH <[email protected]>
4+
5+
> Permission is hereby granted, free of charge, to any person obtaining a copy
6+
> of this software and associated documentation files (the "Software"), to deal
7+
> in the Software without restriction, including without limitation the rights
8+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
> copies of the Software, and to permit persons to whom the Software is
10+
> furnished to do so, subject to the following conditions:
11+
>
12+
> The above copyright notice and this permission notice shall be included in
13+
> all copies or substantial portions of the Software.
14+
>
15+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
> THE SOFTWARE.

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Provides basic API functionality for Laravel
2+
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/webfactor/laravel-apicontroller.svg?style=flat-square)](https://packagist.org/packages/webfactor/laravel-apicontroller)
4+
[![Build Status](https://img.shields.io/travis/webfactor/laravel-apicontroller/master.svg?style=flat-square)](https://travis-ci.org/webfactor/laravel-apicontroller)
5+
[![StyleCI](https://styleci.io/repos/104893362/shield?branch=master)](https://styleci.io/repos/104893362)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/webfactor/laravel-apicontroller.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-apicontroller)
7+
8+
9+
## Installation
10+
11+
You can install the package via composer:
12+
13+
```bash
14+
// :todo
15+
```
16+
17+
## Usage
18+
19+
``` php
20+
$package = new Webfactor\Package();
21+
echo $package->helloWorld();
22+
```
23+
24+
## Changelog
25+
26+
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
27+
28+
## About webfactor
29+
30+
webfactor media GmbH is a developer agency for web and apps based in Würzburg, Germany.
31+
32+
33+
## License
34+
35+
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

0 commit comments

Comments
 (0)