Skip to content

Commit 3a46f50

Browse files
authored
Merge pull request #1 from cesargb/master
Ajustes
2 parents 61c635c + ae363e5 commit 3a46f50

File tree

8 files changed

+8
-66
lines changed

8 files changed

+8
-66
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ build
22
composer.lock
33
docs
44
vendor
5-
coverage
5+
coverage
6+
.phpunit.result.cache

.scrutinizer.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.styleci.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: php
22

33
php:
4-
- 7.1
54
- 7.2
5+
- 7.3
6+
- 7.4
67

78
env:
89
matrix:

README.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,10 @@
1-
# Very short description of the package
2-
3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/beyondcode/:package_name.svg?style=flat-square)](https://packagist.org/packages/beyondcode/:package_name)
4-
[![Build Status](https://img.shields.io/travis/beyondcode/:package_name/master.svg?style=flat-square)](https://travis-ci.org/beyondcode/:package_name)
5-
[![Quality Score](https://img.shields.io/scrutinizer/g/beyondcode/:package_name.svg?style=flat-square)](https://scrutinizer-ci.com/g/beyondcode/:package_name)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/beyondcode/:package_name.svg?style=flat-square)](https://packagist.org/packages/beyondcode/:package_name)
7-
8-
**Note:** Replace ```Marcel Pociot``` ```:author_username``` ```marcel@beyondco.de``` ```:package_name``` ```:package_description``` with their correct values in [README.md](README.md), [CHANGELOG.md](CHANGELOG.md), [CONTRIBUTING.md](CONTRIBUTING.md), [LICENSE.md](LICENSE.md) and [composer.json](composer.json) files, then delete this line.
9-
10-
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
111

122
## Installation
133

144
You can install the package via composer:
155

166
```bash
17-
composer require beyondcode/:package_name
18-
```
19-
20-
## Usage
21-
22-
``` php
23-
$skeleton = new BeyondCode\Skeleton();
24-
echo $skeleton->echoPhrase('Hello, BeyondCode!');
7+
composer require descom-es/php-lib
258
```
269

2710
### Testing

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"name": "descom-es/php-lib",
33
"description": "Package for Descom",
44
"keywords": [
5-
"descom",
6-
""
5+
"descom"
76
],
87
"homepage": "https://github.com/descom-es/php-lib",
98
"license": "MIT",
@@ -35,7 +34,7 @@
3534
},
3635
"scripts": {
3736
"test": "vendor/bin/phpunit",
38-
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
37+
"test-coverage": "vendor/bin/phpunit --coverage-txt"
3938

4039
},
4140
"config": {
@@ -44,7 +43,7 @@
4443
"extra": {
4544
"laravel": {
4645
"providers": [
47-
"Descom\\NotificationManager\\NotificationManagerServiceProvider"
46+
"DescomLib\\DescomLibServiceProvider"
4847
]
4948
}
5049
}

tests/ExampleTest.php

Lines changed: 0 additions & 14 deletions
This file was deleted.

tests/TestCase.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77

88
abstract class TestCase extends Orchestra
99
{
10-
public function setUp(): void
11-
{
12-
parent::setUp();
13-
}
14-
1510
/**
1611
* @param \Illuminate\Foundation\Application $app
1712
*

0 commit comments

Comments
 (0)