Skip to content

Commit

Permalink
Merge branch 'release-v3.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrzejchalubek committed Mar 27, 2018
2 parents 984371f + 6cde335 commit 8a4d554
Show file tree
Hide file tree
Showing 64 changed files with 3,306 additions and 2,709 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# editorconfig.org

root = true

[*]
charset = utf-8
indent_size = 2
indent_style = space
trim_trailing_whitespace = true

[*.php]
indent_size = 4
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
19 changes: 11 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
language: php
sudo: false

php:
- 7.1

notifications:
email:
on_success: never
on_failure: change

php:
- 7.1
- 7.0

before_script:
before_install:
- composer self-update
- composer install --no-interaction --dev

install:
- composer validate
- composer install -o --prefer-dist --no-interaction

script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml

after_script:
- php vendor/bin/coveralls -v
- php vendor/bin/coveralls -v
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Simple CLI for initiating themes based on [Tonik WordPress Starter Theme](https://github.com/tonik/tonik).

### Documentation

Comprehensive documentation is available at http://labs.tonik.pl/theme/

## Installing

You can install package via Composer.
Expand Down Expand Up @@ -34,4 +38,4 @@ Great that you are considering supporting the project. You have a lot of ways to

## License

Licensed under the [MIT license](http://opensource.org/licenses/MIT).
Licensed under the [MIT license](http://opensource.org/licenses/MIT).
14 changes: 14 additions & 0 deletions art/tonik.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

<comment>-----------------------------------------------------------------</comment>
<comment>_______ ______ ______ _____ _ __ ______ _ _____</comment>
<comment> | | / | | \ | | \ \ | | | | / / | | | | | | </comment>
<comment> | | | | | | | | | | | | | |-< < | | | | _ | | </comment>
<comment> |_| \_|__|_/ |_| |_| _|_|_ |_| \_\ |_|____ |_|__|_| _|_|_</comment>
<comment>_________________________________________________________________</comment>

<info>You are about to initialize a project based on Tonik Starter Theme.</info>
<info>This setup wizard will guide you through the entire process.</info>

<info>You will be asked for some details about your theme. Default answers</info>
<info>for questions are presented inside</info> [brackets]<info>.</info>
<info>Leave answer empty if you want to use the default value.</info>
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"require": {
"php": ">=7.0",
"league/climate": "^3.2",
"symfony/finder": "~2.3|~3.0"
"symfony/finder": "~2.3|~3.0",
"symfony/filesystem": "~2.3|~3.0"
},
"require-dev": {
"mockery/mockery": "~1.0.0",
Expand Down
Loading

0 comments on commit 8a4d554

Please sign in to comment.