-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
153 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
# vendor dirs | ||
vendor | ||
|
||
# composer lock files | ||
composer.lock | ||
|
||
# hidev internals | ||
.hidev/composer.json | ||
.hidev/composer.lock | ||
.hidev/vendor | ||
|
||
# IDE & OS files | ||
.*.swp | ||
.idea | ||
nbproject | ||
.DS_Store | ||
.buildpath | ||
.idea | ||
.project | ||
.settings | ||
Thumbs.db | ||
.DS_Store | ||
nbproject | ||
|
||
# php-cs-fixer cache | ||
.php_cs.cache | ||
|
||
# vendor dirs | ||
vendor | ||
|
||
# composer lock files | ||
composer.lock | ||
|
||
# phpunit generated files | ||
coverage.clover | ||
|
||
# PHARs | ||
composer.phar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
package: | ||
name: hipanel-module-server | ||
namespace: hipanel\modules\server | ||
label: HiPanel ServerModule | ||
title: Server Plugin for HiPanel | ||
type: yii2-extension | ||
name: hipanel-module-server | ||
title: Server module for HiPanel | ||
headline: HiPanel Server Module | ||
keywords: server, hipanel, plugin | ||
year: 2014 | ||
namespace: hipanel\modules\server | ||
description: | | ||
[![Logo](https://raw.githubusercontent.com/hiqdev/hipanel-core/master/docs/logo.png)](https://hipanel.com/) | ||
[HiPanel](http://hipanel.com) is the next generation control panel for hosting, domains and more. | ||
This package provides server management for HiPanel. | ||
require: | ||
hiqdev/hidev-config: "*" | ||
hiqdev/hidev-config-php: "*" | ||
hiqdev/hidev-php: "*" | ||
hiqdev/hidev-vendor: "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
checks: | ||
php: | ||
code_rating: true | ||
duplication: true | ||
tools: | ||
php_code_coverage: | ||
enabled: true | ||
external_code_coverage: | ||
timeout: 600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
language: php | ||
php: | ||
- 5.5 | ||
- 5.6 | ||
- 7 | ||
- hhvm | ||
matrix: | ||
allow_failures: | ||
- | ||
php: hhvm | ||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
before_install: | ||
- 'composer self-update' | ||
- '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' | ||
sudo: false | ||
install: | ||
- './hidev.phar travis/install' | ||
script: | ||
- './hidev.phar travis/script' | ||
after_script: | ||
- './hidev.phar travis/after_script' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters