-
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
28 changed files
with
570 additions
and
160 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,28 +1,70 @@ | ||
{ | ||
"package": { | ||
"type": "package", | ||
"name": "hidev", | ||
"label": "HiDev", | ||
"title": "HiDev - integrate your development", | ||
"license": "BSD-3-clause", | ||
"keywords": [ | ||
"hiqdev", | ||
"tool", | ||
"continuous integration", | ||
"code generator" | ||
], | ||
"description": "Mix all the tools to make your code shine", | ||
"name": "hidev", | ||
"label": "HiDev", | ||
"title": "HiDev - integrate your development", | ||
"type": "project", | ||
"features": "yii2, tool", | ||
"license": "BSD-3-Clause", | ||
"source": "https://github.com/hiqdev/hidev", | ||
"forum": "https://forum.hidev.com/", | ||
"language": "PHP", | ||
"homepage": "https://hidev.me/", | ||
"keywords": "hiqdev, tool, continuous integration, code generator", | ||
"namespace": "hiqdev\\hidev", | ||
"description": "Mix all the tools to make your code shine", | ||
"year": 2014 | ||
}, | ||
"vendor": { | ||
"name": "hiqdev", | ||
"title": "HiQDev", | ||
"site": "http://hiqdev.com/" | ||
"name": "hiqdev", | ||
"title": "HiQDev", | ||
"homepage": "http://hiqdev.com/", | ||
"email": "support@hiqdev.com", | ||
"authors": { | ||
"Andrii Vasyliev": { | ||
"role": "Project lead", | ||
"email": "sol@hiqdev.com", | ||
"homepage": "https://hipanel.com/" | ||
}, | ||
"Dmitry Naumenko": { | ||
"role": "Lead backend developer", | ||
"email": "silverfire@hiqdev.com", | ||
"homepage": "http://silverfire.me/" | ||
}, | ||
"Andrey Klochok": { | ||
"role": "Lead frontend developer", | ||
"email": "tafid@hiqdev.com", | ||
"homepage": "https://hiqdev.com/" | ||
}, | ||
"Yuriy Myronchuk": { | ||
"role": "QA Lead", | ||
"email": "bladeroot@hiqdev.com", | ||
"homepage": "https://hiqdev.com/" | ||
} | ||
} | ||
}, | ||
"all": { | ||
"LICENSE": [], | ||
".gitignore": [] | ||
"LICENSE": [], | ||
"composer": [], | ||
".gitignore": [], | ||
"README.md": [], | ||
"CHANGELOG.md": [] | ||
}, | ||
"install": { | ||
"composer self-update": [] | ||
}, | ||
"LICENSE.md": [] | ||
"composer.json": { | ||
"data": { | ||
"require": { | ||
"yiisoft/yii2-gii": "2.*", | ||
"hiqdev/yii2-collection": "*@dev" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"hiqdev\\hidev\\": "" | ||
} | ||
}, | ||
"bin": ["hidev"] | ||
} | ||
} | ||
} |
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,7 @@ | ||
changelog | ||
---------- | ||
|
||
### 0.1.0 under development | ||
|
||
- inited | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
HiDev - integrate your development | ||
---------------------------------- | ||
|
||
Mix all the tools to make your code shine | ||
|
||
For more info see wiki: | ||
https://github.com/hiqdev/hidev/wiki |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
/* | ||
* HiDev | ||
* | ||
* @link https://hiqdev.com/hidev | ||
* @package hidev | ||
* @license BSD 3-clause | ||
* @copyright Copyright (c) 2015 HiQDev | ||
*/ | ||
|
||
namespace hiqdev\hidev\goals; | ||
|
||
use Yii; | ||
|
||
/** | ||
* Authors for the config. | ||
*/ | ||
class Author extends \hiqdev\collection\Model | ||
{ | ||
public function rules() | ||
{ | ||
return [ | ||
['name', 'safe'], | ||
['role', 'safe'], | ||
['email', 'safe'], | ||
['homepage', 'safe'], | ||
]; | ||
} | ||
|
||
} |
Oops, something went wrong.