-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update scripts and license
- Loading branch information
Showing
9 changed files
with
424 additions
and
93 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 |
---|---|---|
|
@@ -4,5 +4,4 @@ Python: false | |
PHP: true | ||
|
||
exclude_paths: | ||
- tests/**/* | ||
|
||
- tests/**/* |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,11 @@ | ||
# Trellis | ||
|
||
[![Coverage Status](https://coveralls.io/repos/honeybee/trellis/badge.svg)](https://coveralls.io/r/honeybee/trellis) | ||
[![Coverage Status](https://coveralls.io/repos/honeybee/trellis/badge.svg?branch=master)](https://coveralls.io/r/honeybee/trellis?branch=master) | ||
[![Build Status](https://travis-ci.org/honeybee/trellis.svg?branch=master)](https://travis-ci.org/honeybee/trellis) | ||
[![Code Climate](https://codeclimate.com/github/honeybee/trellis/badges/gpa.svg)](https://codeclimate.com/github/honeybee/trellis) | ||
[![Dependency Status](https://www.versioneye.com/user/projects/558dd854316338001a000034/badge.svg?style=flat)](https://www.versioneye.com/user/projects/558dd854316338001a000034) | ||
|
||
## Community | ||
|
||
Please contribute by [forking](http://help.github.com/forking/) and sending a [pull request](http://help.github.com/pull-requests/). | ||
If unsure what to do have a look at the `TODO.md` file as a starting point. | ||
You can get in touch with us via irc by joining the #environaut channel on freenode. | ||
|
||
## Changelog | ||
|
||
See `CHANGELOG.md` for more information about changes. | ||
|
||
## Contributors | ||
|
||
See `AUTHORS.md` for a list of contributors. | ||
|
||
## License | ||
|
||
See `MIT-LICENSE.txt` for details. | ||
Find us on: | ||
|
||
* Gitter: https://gitter.im/honeybee/Lobby | ||
* IRC: freenode.net #honeybee |
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,43 +1,56 @@ | ||
{ | ||
"name": "honeybee/trellis", | ||
"type": "library", | ||
"bin": [ "bin/trellis" ], | ||
"description": "Library for generating entities, that enforce data validity according to a specific schema.", | ||
"keywords": ["entity", "validation", "dto"], | ||
"keywords": [ "entity", "validation", "dto" ], | ||
"homepage": "https://github.com/honeybee/trellis", | ||
"license": "MIT", | ||
"license": "MPL-2.0", | ||
"authors": [ | ||
{ | ||
"name": "Thorsten Schmitt-Rink" | ||
"name": "Thorsten Schmitt-Rink", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/shrink0r", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Steffen Gransow", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/graste", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Steffen Gransow" | ||
"name": "Hasham Ahmad", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/MrHash", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Igor Pellegrini" | ||
"name": "Igor Pellegrini", | ||
"homepage": "https://github.com/Pictor13", | ||
"role": "Developer" | ||
}, | ||
{ | ||
"name": "Hasham Ahmad" | ||
"name": "Honeybee Contributors", | ||
"homepage": "https://github.com/honeybee/honeybee/graphs/contributors" | ||
} | ||
], | ||
"prefer-stable": true, | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">=5.6.0", | ||
"beberlei/assert": "^2.7", | ||
"egulias/email-validator": "^2.1", | ||
"fzaninotto/faker": "~1.6", | ||
"mtdowling/jmespath.php": "~2.4", | ||
"fzaninotto/faker": "^1.6", | ||
"mtdowling/jmespath.php": "^2.4", | ||
"ramsey/uuid": "^3.6", | ||
"symfony/console": "~3.2", | ||
"symfony/filesystem": "~3.2", | ||
"twig/twig": "~1.3", | ||
"roave/security-advisories": "master@dev" | ||
"roave/security-advisories": "master@dev", | ||
"symfony/console": "^3.2", | ||
"symfony/filesystem": "^3.2", | ||
"twig/twig": "^1.3" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7", | ||
"phpmd/phpmd": "^2.6", | ||
"squizlabs/php_codesniffer": "~2.8", | ||
"squizlabs/php_codesniffer": "^2.8", | ||
"mockery/mockery": "^0.9", | ||
"satooshi/php-coveralls": "master@dev" | ||
}, | ||
|
@@ -47,18 +60,13 @@ | |
"autoload-dev": { | ||
"psr-4": { "Trellis\\Tests\\" : "tests/" } | ||
}, | ||
"bin": [ "bin/trellis" ], | ||
"scripts": { | ||
"test": [ | ||
"./vendor/bin/phpunit tests" | ||
], | ||
"code-sniffer": [ | ||
"./vendor/bin/phpcs --extensions=php --standard=psr2 ./src/ ./tests" | ||
], | ||
"test": "phpunit tests", | ||
"code-sniffer": "phpcs --extensions=php --standard=psr2 src tests", | ||
"build": [ | ||
"if [ -d ./build/logs ]; then rm -rf ./build/logs; fi", | ||
"mkdir -p ./build/logs", | ||
"composer test", | ||
"composer code-sniffer" | ||
"@test", | ||
"@code-sniffer" | ||
] | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.