Skip to content

Commit

Permalink
Added initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Kilhage committed Oct 15, 2016
1 parent 55a9c05 commit 7e1fdb6
Show file tree
Hide file tree
Showing 11 changed files with 325 additions and 65,719 deletions.
3 changes: 2 additions & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ tools:

filter:
paths: [ 'src/*' ]
excluded_paths: [vendor/*]
excluded_paths:
- vendor/*

application:
environment:
Expand Down
33 changes: 33 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Contributing
============

First of all, **thank you** for contributing, **you are awesome**!

Here are a few rules to follow in order to ease code reviews, and discussions before
maintainers accept and merge your work.

You MUST follow the [PSR-1](http://www.php-fig.org/psr/1/) and
[PSR-2](http://www.php-fig.org/psr/2/). If you don't know about any of them, you
should really read the recommendations. Can't wait? Use the [PHP-CS-Fixer
tool](http://cs.sensiolabs.org/).

You MUST run the test suite.

You MUST write (or update) unit tests.

You SHOULD write documentation.

Please, write [commit messages that make
sense](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html),
and [rebase your branch](http://git-scm.com/book/en/Git-Branching-Rebasing)
before submitting your Pull Request.

One may ask you to [squash your
commits](http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html)
too. This is used to "clean" your Pull Request before merging it (we don't want
commits such as `fix tests`, `fix 2`, `fix 3`, etc.).

Also, while creating your Pull Request on GitHub, you MUST write a description
which gives the context and/or explains why you are creating it.

Thank you!
19 changes: 19 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2015 Glooby AB

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
1 change: 0 additions & 1 deletion bin/phpunit

This file was deleted.

65,671 changes: 0 additions & 65,671 deletions bin/phpunit.phar

This file was deleted.

14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"name": "glooby/template-bundle",
"license": "proprietary",
"type": "symfony-bundle",
"description": "template-bundle",
"name": "glooby/pexels",
"license": "MIT",
"type": "library",
"description": "pexels",
"keywords": ["pexels", "images", "api", "sdk", "glooby"],
"authors": [
{
"name": "Emil Kilhage",
"email": "emil.kilhage@glooby.com"
}
],
"autoload": {
"psr-4": { "Glooby\\TemplateBundle\\": "src/" }
"psr-4": { "Glooby\\Pexels\\": "src/" }
},
"require": {
"php": ">=5.6"
"php": ">=5.5",
"guzzlehttp/guzzle": "~5.1"
}
}
206 changes: 202 additions & 4 deletions composer.lock

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

33 changes: 0 additions & 33 deletions phpunit.xml.dist

This file was deleted.

3 changes: 0 additions & 3 deletions script/test

This file was deleted.

Empty file removed src/.gitkeep
Empty file.
Loading

0 comments on commit 7e1fdb6

Please sign in to comment.