Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

Commit 8a4d554

Browse files
Merge branch 'release-v3.0.0'
2 parents 984371f + 6cde335 commit 8a4d554

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3306
-2709
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_size = 2
8+
indent_style = space
9+
trim_trailing_whitespace = true
10+
11+
[*.php]
12+
indent_size = 4
13+
insert_final_newline = true
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

.travis.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
language: php
2+
sudo: false
3+
4+
php:
5+
- 7.1
26

37
notifications:
48
email:
59
on_success: never
610
on_failure: change
711

8-
php:
9-
- 7.1
10-
- 7.0
11-
12-
before_script:
12+
before_install:
1313
- composer self-update
14-
- composer install --no-interaction --dev
14+
15+
install:
16+
- composer validate
17+
- composer install -o --prefer-dist --no-interaction
1518

1619
script:
1720
- mkdir -p build/logs
18-
- phpunit --coverage-clover build/logs/clover.xml
21+
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
1922

2023
after_script:
21-
- php vendor/bin/coveralls -v
24+
- php vendor/bin/coveralls -v

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

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

7+
### Documentation
8+
9+
Comprehensive documentation is available at http://labs.tonik.pl/theme/
10+
711
## Installing
812

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

3539
## License
3640

37-
Licensed under the [MIT license](http://opensource.org/licenses/MIT).
41+
Licensed under the [MIT license](http://opensource.org/licenses/MIT).

art/tonik.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
<comment>-----------------------------------------------------------------</comment>
3+
<comment>_______ ______ ______ _____ _ __ ______ _ _____</comment>
4+
<comment> | | / | | \ | | \ \ | | | | / / | | | | | | </comment>
5+
<comment> | | | | | | | | | | | | | |-< < | | | | _ | | </comment>
6+
<comment> |_| \_|__|_/ |_| |_| _|_|_ |_| \_\ |_|____ |_|__|_| _|_|_</comment>
7+
<comment>_________________________________________________________________</comment>
8+
9+
<info>You are about to initialize a project based on Tonik Starter Theme.</info>
10+
<info>This setup wizard will guide you through the entire process.</info>
11+
12+
<info>You will be asked for some details about your theme. Default answers</info>
13+
<info>for questions are presented inside</info> [brackets]<info>.</info>
14+
<info>Leave answer empty if you want to use the default value.</info>

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"require": {
77
"php": ">=7.0",
88
"league/climate": "^3.2",
9-
"symfony/finder": "~2.3|~3.0"
9+
"symfony/finder": "~2.3|~3.0",
10+
"symfony/filesystem": "~2.3|~3.0"
1011
},
1112
"require-dev": {
1213
"mockery/mockery": "~1.0.0",

0 commit comments

Comments
 (0)