Skip to content

Commit

Permalink
skeleton commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vasiliishvakin committed Apr 18, 2017
1 parent 26bf1c7 commit 50fc834
Show file tree
Hide file tree
Showing 35 changed files with 3,511 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
coverage_clover: tests/_output/coverage.xml
json_path: tests/_output/coveralls-upload.json
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
vendor
local.config.php
data
public/data
public/assets

tests/_output/*

composer.lock

tests/_output/*
14 changes: 14 additions & 0 deletions .sensiolabs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
global_exclude_dirs:
- vendor
- tests
- data
- public/data
- public/assets

exclude_patterns:
- c3.php
- router.php

pre_composer_script: |
#!/bin/bash
composer global require "fxp/composer-asset-plugin:^1.1.1"
36 changes: 36 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
language: php

php:
- 5.6
- 7.1

matrix:
allow_failures:
- php: 7.1

cache:
directories:
- vendor
- $HOME/.composer/cache

install:
- composer global require "fxp/composer-asset-plugin:^1.1.1"
- composer self-update
- composer install --prefer-dist
- ulimit -c unlimited || true

before_script:
# Start up a web server.
- php -S 127.0.0.1:8888 -t public router.php >/dev/null 2>&1 &
# Start up the webdriver.
#- phantomjs --webdriver=4444 >/dev/null 2>&1 &
# Install Codeception.
# Doing this last gives the webdriver and server time to start up.
#- composer install --prefer-source
- sleep 10

script:
- php vendor/bin/codecept run --coverage --coverage-xml

after_success:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;'
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# akademiano-site-default
[![Build Status](https://travis-ci.org/mrdatamapper/akademiano-site-default.svg?branch=master)](https://travis-ci.org/mrdatamapper/akademiano-site-default)
[![Coverage Status](https://coveralls.io/repos/github/mrdatamapper/akademiano-site-default/badge.svg)](https://coveralls.io/github/mrdatamapper/akademiano-site-default)
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/3055d706-335e-4780-a5c8-338c4b1abcde/mini.png)](https://insight.sensiolabs.com/projects/3055d706-335e-4780-a5c8-338c4b1abcde)
[![Libraries.io ](https://img.shields.io/librariesio/github/mrdatamapper/akademiano-site-default.svg)](https://libraries.io/github/mrdatamapper/akademiano-site-default)
[![GitHub release](https://img.shields.io/github/release/mrdatamapper/akademiano-site-default.svg)]()

Akademiano site default


## Contributing

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) © mrdatamapper
Loading

0 comments on commit 50fc834

Please sign in to comment.