Skip to content

Commit 5fdaaa3

Browse files
committed
fixed configs for hidev 0.6
1 parent bf1f7ba commit 5fdaaa3

File tree

5 files changed

+30
-16
lines changed

5 files changed

+30
-16
lines changed

.gitignore

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# hidev internals
2-
.hidev/composer.json
3-
.hidev/composer.lock
4-
.hidev/config-local.yml
5-
.hidev/vendor
2+
/.hidev/composer.json
3+
/.hidev/composer.lock
4+
/.hidev/runtime
5+
/.hidev/vendor
6+
7+
# local config
8+
/.env
9+
/hidev-local.yml
610

711
# IDE & OS files
812
.*.swp
@@ -14,21 +18,20 @@
1418
Thumbs.db
1519
nbproject
1620

17-
# vendor dirs
18-
vendor
19-
20-
# composer lock files
21-
composer.lock
21+
# composer internals
22+
/composer.lock
23+
/vendor
2224

2325
# php-cs-fixer cache
2426
.php_cs.cache
2527

2628
# phpunit generated files
2729
coverage.clover
2830

29-
# PHARs
31+
# Binaries
3032
chkipper.phar
3133
composer.phar
34+
ocular.phar
3235
php-cs-fixer.phar
3336
phpunit-skelgen.phar
3437
phpunit.phar

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ php:
44
- 7
55
- 7.1
66
- hhvm
7-
sudo: false
87
dist: trusty
98
matrix:
109
allow_failures:
@@ -18,10 +17,11 @@ before_install:
1817
- 'composer --version'
1918
- 'wget http://hiqdev.com/hidev/hidev.phar -O hidev.phar && chmod a+x hidev.phar'
2019
- './hidev.phar --version'
21-
- './hidev.phar travis/before_install'
20+
- './hidev.phar travis/before-install'
21+
sudo: false
2222
install:
2323
- './hidev.phar travis/install'
2424
script:
2525
- './hidev.phar travis/script'
2626
after_script:
27-
- './hidev.phar travis/after_script'
27+
- './hidev.phar travis/after-script'

composer.json

+5
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
"hiqdev\\paymenticons\\": "src"
6161
}
6262
},
63+
"extra": {
64+
"config-plugin": {
65+
"console": "src/config/console.php"
66+
}
67+
},
6368
"repositories": [
6469
{
6570
"type": "composer",

.hidev/config.yml hidev.yml

-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ readme:
3434
- Preview
3535
- License
3636

37-
do:
38-
class: hiqdev\paymenticons\console\DoController
39-
4037
default:
4138
before:
4239
- do/write-css

src/config/console.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
return [
4+
'controllerMap' => [
5+
'do' => [
6+
'class' => hiqdev\paymenticons\console\DoController::class,
7+
],
8+
],
9+
];

0 commit comments

Comments
 (0)