File tree 5 files changed +30
-16
lines changed
5 files changed +30
-16
lines changed Original file line number Diff line number Diff line change 1
1
# 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
6
10
7
11
# IDE & OS files
8
12
. * .swp
14
18
Thumbs.db
15
19
nbproject
16
20
17
- # vendor dirs
18
- vendor
19
-
20
- # composer lock files
21
- composer.lock
21
+ # composer internals
22
+ /composer.lock
23
+ /vendor
22
24
23
25
# php-cs-fixer cache
24
26
.php_cs.cache
25
27
26
28
# phpunit generated files
27
29
coverage.clover
28
30
29
- # PHARs
31
+ # Binaries
30
32
chkipper.phar
31
33
composer.phar
34
+ ocular.phar
32
35
php-cs-fixer.phar
33
36
phpunit-skelgen.phar
34
37
phpunit.phar
Original file line number Diff line number Diff line change 4
4
- 7
5
5
- 7.1
6
6
- hhvm
7
- sudo : false
8
7
dist : trusty
9
8
matrix :
10
9
allow_failures :
@@ -18,10 +17,11 @@ before_install:
18
17
- ' composer --version'
19
18
- ' wget http://hiqdev.com/hidev/hidev.phar -O hidev.phar && chmod a+x hidev.phar'
20
19
- ' ./hidev.phar --version'
21
- - ' ./hidev.phar travis/before_install'
20
+ - ' ./hidev.phar travis/before-install'
21
+ sudo : false
22
22
install :
23
23
- ' ./hidev.phar travis/install'
24
24
script :
25
25
- ' ./hidev.phar travis/script'
26
26
after_script :
27
- - ' ./hidev.phar travis/after_script '
27
+ - ' ./hidev.phar travis/after-script '
Original file line number Diff line number Diff line change 60
60
"hiqdev\\ paymenticons\\ " : " src"
61
61
}
62
62
},
63
+ "extra" : {
64
+ "config-plugin" : {
65
+ "console" : " src/config/console.php"
66
+ }
67
+ },
63
68
"repositories" : [
64
69
{
65
70
"type" : " composer" ,
Original file line number Diff line number Diff line change @@ -34,9 +34,6 @@ readme:
34
34
- Preview
35
35
- License
36
36
37
- do :
38
- class : hiqdev\paymenticons\console\DoController
39
-
40
37
default :
41
38
before :
42
39
- do/write-css
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ return [
4
+ 'controllerMap ' => [
5
+ 'do ' => [
6
+ 'class ' => hiqdev \paymenticons \console \DoController::class,
7
+ ],
8
+ ],
9
+ ];
You can’t perform that action at this time.
0 commit comments