Skip to content

Commit 6ff90e4

Browse files
committed
Install daux as local composer package
1 parent d2d55d4 commit 6ff90e4

File tree

5 files changed

+848
-7
lines changed

5 files changed

+848
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea/
22
html/
3+
vendor/
34
.DS_Store

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ then
77
fi
88

99
# Generate the docs using daux.io
10-
daux generate --source=. --destination=html
10+
vendor/bin/daux generate --source=. --destination=html
1111

1212
# Remove the empty placeholder file from the generated html folder
1313
if [ -f html/modmore-documentation.zip ];

circle.yml

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# Install Daux.io
2-
checkout:
3-
post:
4-
# install MODX from git
5-
- composer require justinwalsh/daux.io:dev-development
6-
# After running the tests, we run it again on different versions of PHP
71
test:
82
override:
93
- touch modmore-documentation.zip

composer.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"require": {
3+
"justinwalsh/daux.io": "dev-development"
4+
}
5+
}

0 commit comments

Comments
 (0)