Skip to content

Commit

Permalink
Cleanup project
Browse files Browse the repository at this point in the history
Update scripts and license
  • Loading branch information
MrHash committed Apr 2, 2017
1 parent e28afbb commit 20163d2
Show file tree
Hide file tree
Showing 9 changed files with 424 additions and 93 deletions.
3 changes: 1 addition & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ Python: false
PHP: true

exclude_paths:
- tests/**/*

- tests/**/*
8 changes: 0 additions & 8 deletions AUTHORS.md

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGELOG.md

This file was deleted.

373 changes: 373 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

21 changes: 0 additions & 21 deletions MIT-LICENSE.txt

This file was deleted.

22 changes: 4 additions & 18 deletions README.md
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
3 changes: 0 additions & 3 deletions TODO.md

This file was deleted.

60 changes: 34 additions & 26 deletions composer.json
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"
},
Expand All @@ -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"
]
}
}
}
24 changes: 12 additions & 12 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 20163d2

Please sign in to comment.