Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Jan 15, 2016
1 parent 1ff9e0f commit 3eb0dd7
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 16 deletions.
21 changes: 11 additions & 10 deletions .gitignore
@@ -1,9 +1,3 @@
# vendor dirs
vendor

# composer lock files
composer.lock

# hidev internals
.hidev/composer.json
.hidev/composer.lock
Expand All @@ -19,11 +13,18 @@ nbproject
Thumbs.db
.DS_Store

# phpunit generated files
coverage.clover
# vendor dirs
vendor

# Codeception generated files
tests/_support/_generated
# composer lock files
composer.lock

# php-cs-fixer cache
.php_cs.cache

# phpunit generated files
coverage.clover

# PHARs
php-cs-fixer.phar
phpunit.phar
6 changes: 6 additions & 0 deletions .hidev/commits.md
Expand Up @@ -3,6 +3,12 @@ hiqdev/hidev-license commits history

## Under development

- Changed goals -> controllers
- 1ff9e0f 2016-01-15 fixed tests (sol@hiqdev.com)
- 9b95d3f 2016-01-13 renamed goals -> controllers, get -> take (sol@hiqdev.com)
- Changed PluginManager -> yii2-extraconfig plugin
- 528bde6 2016-01-06 changed config structure (sol@hiqdev.com)
- b90b7c0 2016-01-06 redoing with yii2-extraconfig (sol@hiqdev.com)

## 0.2.0 2015-12-23

Expand Down
2 changes: 1 addition & 1 deletion .hidev/config.yml
Expand Up @@ -18,10 +18,10 @@ package:
require:
hiqdev/hidev-php: "*@dev"
hiqdev/hidev-readme: "*@dev"
hiqdev/hidev-travis: "*@dev"
hiqdev/hidev-vendor: "*@dev"
hiqdev/hidev-license: "*@dev"
hiqdev/hidev-phpunit: "*@dev"
hiqdev/hidev-composer: "*@dev"
hiqdev/hidev-travis-ci: "*@dev"
hiqdev/hidev-scrutinizer: "*@dev"
hiqdev/hidev-php-cs-fixer: "*@dev"
2 changes: 1 addition & 1 deletion .php_cs
Expand Up @@ -6,7 +6,7 @@ License plugin for HiDev
@link https://github.com/hiqdev/hidev-license
@package hidev-license
@license BSD-3-Clause
@copyright Copyright (c) 2015, HiQDev (http://hiqdev.com/)
@copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
EOF;

Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header);
Expand Down
4 changes: 4 additions & 0 deletions .scrutinizer.yml
@@ -1,3 +1,7 @@
checks:
php:
code_rating: true
duplication: true
tools:
php_code_coverage:
enabled: true
Expand Down
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -11,12 +11,13 @@ matrix:
cache:
directories:
- $HOME/.composer/cache
before_install:
- 'composer self-update'
sudo: false
install:
- 'travis_retry composer global require "fabpot/php-cs-fixer:*" "phpunit/phpunit-skeleton-generator:*" "phpunit/phpunit:^4.8"'
- 'travis_retry composer install --no-interaction'
- './vendor/bin/hidev travis/install'
script:
- './vendor/bin/hidev travis/script'
after_script:
- 'if [ $TRAVIS_PHP_VERSION = "5.6" ]; then travis_retry wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi'
- './vendor/bin/hidev travis/after_script'
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,8 @@ hiqdev/hidev-license changelog

## Under development

- Changed goals -> controllers
- Changed PluginManager -> yii2-extraconfig plugin

## 0.2.0 2015-12-23

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright © 2015, HiQDev (http://hiqdev.com/)
Copyright © 2015-2016, HiQDev (http://hiqdev.com/)
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -8,6 +8,7 @@ HiDev License
[![Build Status](https://img.shields.io/travis/hiqdev/hidev-license.svg)](https://travis-ci.org/hiqdev/hidev-license)
[![Code Coverage](https://scrutinizer-ci.com/g/hiqdev/hidev-license/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/hiqdev/hidev-license/?branch=master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/hiqdev/hidev-license/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/hiqdev/hidev-license/?branch=master)
[![Dependency Status](https://www.versioneye.com/php/hiqdev:hidev-license/dev-master/badge.svg)](https://www.versioneye.com/php/hiqdev:hidev-license/dev-master)

[HiDev](https://github.com/hiqdev/hidev) is a task runner, code generator and build tool for easier continuos integration.
This plugin enables LICENSE generation support for HiDev.
Expand Down Expand Up @@ -40,4 +41,4 @@ to the require section of your composer.json.
This project is released under the terms of the BSD-3-Clause [license](LICENSE).
Read more [here](http://choosealicense.com/licenses/bsd-3-clause).

Copyright © 2015, HiQDev (http://hiqdev.com/)
Copyright © 2015-2016, HiQDev (http://hiqdev.com/)

0 comments on commit 3eb0dd7

Please sign in to comment.