Skip to content

Commit

Permalink
inited
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Aug 9, 2016
0 parents commit 1c2bb1e
Show file tree
Hide file tree
Showing 7 changed files with 204 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# hidev internals
.hidev/composer.json
.hidev/composer.lock
.hidev/vendor

# IDE & OS files
.*.swp
.DS_Store
.buildpath
.idea
.project
.settings
Thumbs.db
nbproject

# vendor dirs
vendor

# composer lock files
composer.lock

# php-cs-fixer cache
.php_cs.cache

# phpunit generated files
coverage.clover

# PHARs
chkipper.phar
composer.phar
php-cs-fixer.phar
phpunit-skelgen.phar
phpunit.phar
11 changes: 11 additions & 0 deletions .hidev/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package:
type: yii2-extension
name: hisite-core
title: Hisite core package
headline: Hisite Core
keywords: yii2, hisite, core
namespace: hisite
description: |
HiSite is a way to build Yii2 based sites from components.
This package is the core of the system.
9 changes: 9 additions & 0 deletions .scrutinizer.yml
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
28 changes: 28 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
language: php
php:
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
-
php: hhvm
-
php: 5.5
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'
29 changes: 29 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Copyright © 2016, HiQDev (http://hiqdev.com/)
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of HiQDev nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Hisite Core
===========

**Hisite core package**

[![Latest Stable Version](https://poser.pugx.org/hiqdev/hisite-core/v/stable)](https://packagist.org/packages/hiqdev/hisite-core)
[![Total Downloads](https://poser.pugx.org/hiqdev/hisite-core/downloads)](https://packagist.org/packages/hiqdev/hisite-core)
[![Build Status](https://img.shields.io/travis/hiqdev/hisite-core.svg)](https://travis-ci.org/hiqdev/hisite-core)
[![Scrutinizer Code Coverage](https://img.shields.io/scrutinizer/coverage/g/hiqdev/hisite-core.svg)](https://scrutinizer-ci.com/g/hiqdev/hisite-core/)
[![Scrutinizer Code Quality](https://img.shields.io/scrutinizer/g/hiqdev/hisite-core.svg)](https://scrutinizer-ci.com/g/hiqdev/hisite-core/)

HiSite is a way to build Yii2 based sites from components.

This package is the core of the system.

## Installation

The preferred way to install this yii2-extension is through [composer](http://getcomposer.org/download/).

Either run

```sh
php composer.phar require "hiqdev/hisite-core"
```

or add

```json
"hiqdev/hisite-core": "*"
```

to the require section of your composer.json.

## License

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 © 2016, HiQDev (http://hiqdev.com/)
55 changes: 55 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"name": "hiqdev/hisite-core",
"type": "yii2-extension",
"description": "Hisite core package",
"keywords": [
"yii2",
"hisite",
"core"
],
"homepage": "https://github.com/hiqdev/hisite-core",
"license": "BSD-3-Clause",
"support": {
"email": "support@hiqdev.com",
"source": "https://github.com/hiqdev/hisite-core",
"issues": "https://github.com/hiqdev/hisite-core/issues",
"wiki": "https://github.com/hiqdev/hisite-core/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "sol@hiqdev.com",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "silverfire@hiqdev.com",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "tafid@hiqdev.com",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "bladeroot@hiqdev.com",
"homepage": "http://hiqdev.com/"
}
],
"require-dev": {
"hiqdev/hidev-php": "<2.0 || dev-master",
"hiqdev/hidev-hiqdev": "<2.0 || dev-master"
},
"autoload": {
"psr-4": {
"hisite\\": "src",
"hiqdev\\hisite\\core\\": "src"
}
}
}

0 comments on commit 1c2bb1e

Please sign in to comment.