Skip to content

Commit

Permalink
csfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Aug 30, 2017
1 parent 9a812d6 commit a714098
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 17 deletions.
23 changes: 13 additions & 10 deletions .gitignore
@@ -1,8 +1,12 @@
# hidev internals
.hidev/composer.json
.hidev/composer.lock
.hidev/config-local.yml
.hidev/vendor
/.hidev/composer.json
/.hidev/composer.lock
/.hidev/runtime
/.hidev/vendor

# local config
/.env
/hidev-local.yml

# IDE & OS files
.*.swp
Expand All @@ -14,21 +18,20 @@
Thumbs.db
nbproject

# vendor dirs
vendor

# composer lock files
composer.lock
# composer internals
/composer.lock
/vendor

# php-cs-fixer cache
.php_cs.cache

# phpunit generated files
coverage.clover

# PHARs
# Binaries
chkipper.phar
composer.phar
ocular.phar
php-cs-fixer.phar
phpunit-skelgen.phar
phpunit.phar
1 change: 1 addition & 0 deletions .php_cs
Expand Up @@ -26,6 +26,7 @@ return PhpCsFixer\Config::create()
],
'concat_space' => ['spacing' => 'one'],
'array_syntax' => ['syntax' => 'short'],
'phpdoc_no_alias_tag' => ['replacements' => ['type' => 'var']],
'blank_line_before_return' => false,
'phpdoc_align' => false,
'phpdoc_scalar' => false,
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -4,7 +4,6 @@ php:
- 7
- 7.1
- hhvm
sudo: false
dist: trusty
matrix:
allow_failures:
Expand All @@ -18,10 +17,11 @@ before_install:
- 'composer --version'
- 'wget http://hiqdev.com/hidev/hidev.phar -O hidev.phar && chmod a+x hidev.phar'
- './hidev.phar --version'
- './hidev.phar travis/before_install'
- './hidev.phar travis/before-install'
sudo: false
install:
- './hidev.phar travis/install'
script:
- './hidev.phar travis/script'
after_script:
- './hidev.phar travis/after_script'
- './hidev.phar travis/after-script'
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -9,8 +9,10 @@
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/hiqdev/yii2-theme-agency.svg)](https://scrutinizer-ci.com/g/hiqdev/yii2-theme-agency/)
[![Dependency Status](https://www.versioneye.com/php/hiqdev:yii2-theme-agency/dev-master/badge.svg)](https://www.versioneye.com/php/hiqdev:yii2-theme-agency/dev-master)

This package provides [Agency theme](https://startbootstrap.com/template-overviews/agency/)
for [Yii2 framework](http://yiiframework.com).
This package provides [Agency theme] for [Yii2 framework].

[Agency theme]: https://startbootstrap.com/template-overviews/agency/
[Yii2 framework]: http://yiiframework.com/

## Installation

Expand Down
6 changes: 4 additions & 2 deletions hidev.yml
Expand Up @@ -6,5 +6,7 @@ package:
keywords: yii2, theme, agency
namespace: hiqdev\themes\agency
description: |
This package provides [Agency theme](https://startbootstrap.com/template-overviews/agency/)
for [Yii2 framework](http://yiiframework.com).
This package provides [Agency theme] for [Yii2 framework].
[Agency theme]: https://startbootstrap.com/template-overviews/agency/
[Yii2 framework]: http://yiiframework.com/

0 comments on commit a714098

Please sign in to comment.