Browse Source

phan ignore old app/system code for now; ignore missing .githooks to fix

build process
master
Adam Pippin 4 years ago
parent
commit
f36800dc9b
  1. 1
      .phan/config.php
  2. 2
      composer.json

1
.phan/config.php

@ -17,6 +17,7 @@ return [
'exclude_analysis_directory_list' => [
'vendor/',
'app/System/',
'.phan/stubs/'
],

2
composer.json

@ -44,7 +44,7 @@
"post-create-project-cmd": [
"@php application app:rename"
],
"post-autoload-dump": "cp .githooks/* .git/hooks"
"post-autoload-dump": "if [ -d .githooks ]; then cp .githooks/* .git/hooks; fi"
},
"minimum-stability": "dev",
"prefer-stable": true,

Loading…
Cancel
Save