Skip to content

Commit

Permalink
Bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianluca Arbezzano committed Mar 10, 2015
0 parents commit fabfffc
Show file tree
Hide file tree
Showing 10 changed files with 1,608 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
tags
vendor
composer.phar
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: php

sudo: false

php:
- 5.5
- 5.6
- 7.0
- hhvm

before_script:
- composer self-update

install:
- composer install --prefer-source

script:
- ./vendor/bin/phpunit
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Groot
[![Build Status](https://travis-ci.org/gianarb/groot.svg)](https://travis-ci.org/gianarb/groot)
Another Php Framwork make of other components
30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "gianarb/groot",
"description": "Another PHP framework make of other components",
"require": {
"nikic/fast-route": "0.4.*",
"phly/http": "0.11.*"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"phpspec/phpspec": "~2.1"
},
"license": "MIT",
"authors": [
{
"name": "Gianluca Arbezzano",
"email": "gianarb92@gmail.com"
}
],
"autoload": {
"psr-4": {
"GianArb\\Groot\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"GianArb\\GrootTest\\": "./tests",
"TestApp\\": "./tests/app"
}
}
}
Loading

0 comments on commit fabfffc

Please sign in to comment.