Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #57 from pacoorozco/develop
Browse files Browse the repository at this point in the history
Release 0.9.6
  • Loading branch information
pacoorozco authored Mar 20, 2020
2 parents fa05a47 + 8998e1d commit bb677de
Show file tree
Hide file tree
Showing 49 changed files with 7,233 additions and 2,371 deletions.
8 changes: 7 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
APP_NAME=PROBIND
APP_ENV=local
APP_KEY=
APP_DEBUG=true
Expand All @@ -14,9 +15,9 @@ DB_PASSWORD=secret

BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
Expand All @@ -29,6 +30,11 @@ MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
Expand Down
21 changes: 21 additions & 0 deletions .env.travis
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# .env.travis

APP_NAME=PROBIND
APP_ENV=testing
APP_KEY=base64:Dhtsut2yoe1Oc7Glgl4zPrGLQEKECbi3NoRNQh2N4/c=
APP_DEBUG=true
APP_URL=http://localhost

DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=testing
DB_USERNAME=travis
DB_PASSWORD=

BCRYPT_ROUNDS=4
CACHE_DRIVER=array
QUEUE_CONNECTION=sync
SESSION_DRIVER=array
MAIL_DRIVER=array

38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
17 changes: 17 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
**What issue type does this pull request address?** (keep at least one, remove the others)
/kind bug
/kind enhancement
/kind feature
/kind documentation

**What is this pull request for? Which issues does it resolve?** (use `resolves #<issue_number>` if possible)
resolves #


**Does this pull request has user-facing changes?** (e.g. config changes, new/modified commands, new/modified flags)


**Does this pull request add new dependencies?**


**What else do we need to know?**
52 changes: 15 additions & 37 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,20 @@
filter:
paths: ["app/*"]
build:
environment:
php: 7.2
dependencies:
override:
- composer install --prefer-dist --no-interaction --no-progress --no-suggest
nodes:
analysis:
tests:
override:
- php-scrutinizer-run

checks:
php:
code_rating: true
duplication: true
remove_extra_empty_lines: true
remove_php_closing_tag: true
remove_trailing_whitespace: true
fix_use_statements:
remove_unused: true
preserve_multiple: false
preserve_blanklines: true
order_alphabetically: true
fix_php_opening_tag: true
fix_linefeed: true
fix_line_ending: true
fix_identation_4spaces: true
fix_doc_comments: true
filter:
paths: ["app/*"]

tools:
external_code_coverage:
timeout: 600

php_analyzer: true
php_code_coverage: true
php_code_sniffer:
config:
standard: "PSR2"

# PHP CS Fixer (http://http://cs.sensiolabs.org/).
php_cs_fixer:
enabled: true
config:
level: psr2
external_code_coverage:
timeout: 600

# Analyzes the size and structure of a PHP project.
php_loc: true

# Security Advisory Checker
sensiolabs_security_checker: true
1 change: 1 addition & 0 deletions .symfony.insight.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
php_version: 7.2
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: php

php:
- 7.1
- 7.2

services:
- mysql

# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
Expand All @@ -16,8 +19,12 @@ cache:
- $HOME/.composer/cache

before_script:
- cp .env.travis .env
- mysql -e 'create database testing;'
- travis_retry composer self-update
- travis_retry composer install ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- travis_retry composer install --prefer-dist --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS}
- php artisan key:generate
- php artisan migrate --seed

script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## Unreleased

## 0.9.6 - 2020-03-18
### Fixed
- Update PHP minimum version to 7.2
- Fix issue related with docker creation. Thanks @AnatoliyKizyulya ([#54][i54])
- Fix [vulnerability](https://github.com/pacoorozco/probind/network/alert/composer.lock/symfony%2Fhttp-foundation/closed) on `http
-foundation`

[i54]: https://github.com/pacoorozco/ssham/issues/54

## 0.9.5 - 2019-01-26
### Fixed
- Fix Travis link in README. Thanks @marado!
Expand Down
1 change: 0 additions & 1 deletion _config.yml

This file was deleted.

7 changes: 2 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"issues": "https://github.com/pacoorozco/probind/issues"
},
"require": {
"php": "^7.1.3",
"php": "^7.2",
"laravel/framework": "5.6.*",
"laravelcollective/html": "5.5.*",
"yajra/laravel-datatables-oracle": "^8.0",
Expand All @@ -32,7 +32,6 @@
"larapacks/setting": "1.0.*"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.4",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"laravel/browser-kit-testing": "4.*",
Expand Down Expand Up @@ -73,9 +72,7 @@
"@php artisan package:discover"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
]
},
"config": {
Expand Down
Loading

0 comments on commit bb677de

Please sign in to comment.