Skip to content

Commit 58561f4

Browse files
Merge remote-tracking branch 'upstream/master'
2 parents 6932abf + 0514431 commit 58561f4

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ after_script:
6565
deploy:
6666
- provider: releases
6767
api_key:
68-
secure: {ENCRYPTED GITHUB OAUTH TOKEN}
68+
secure: DomTGXybcR47TbiNl3I65M9N+qQZLxj22Dqr8W6SQq5/vUoR3BeUprZgYuOhcdWzmjLH0ZLIvn+JMDT8sP4fXkAzpOkeOQY166I6qw3fWXXp9wlh3RZqJghz7R3u+hNn/Md0fgZl1wrO+juNTedd3LVL4b0nKxbcenVFQmRjTEw=
6969
file: "dist/ZendServerDeploymentHelper-${TRAVIS_TAG}.zpk"
7070
skip_cleanup: true
7171
on:

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005-2013, Zend Technologies USA, Inc.
1+
Copyright (c) 2005-2017, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ that may be defined in each hook script:
3131
When implementing deployment packages one quickly notice that some
3232
basic functionality like logging or DB import would be helpful.
3333

34+
The ZPK package of the Zend Server Deployment Helper can be found in the release section. The ZPK file can be deployed as a library prior to the app deployment on a Zend Server system.
35+
3436
## Features
3537
### Log
3638
Enabled logging automatically creates an app-name based log file in

build.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<include name="init_autoloader.php"/>
1717
<include name="LICENSE.txt"/>
1818
<include name="README.md"/>
19-
<include name="etc/**"/>
2019
<include name="src/**"/>
2120
<include name="vendor/**"/>
2221
<exclude name="**/tests/"/>
@@ -43,6 +42,7 @@
4342
<exclude name="**/.php_cs"/>
4443
<exclude name="**/Vagrantfile"/>
4544
<exclude name="**/Doxyfile"/>
45+
<exclude name="**/LICENSE.txt"/>
4646
</fileset>
4747

4848
<target name="init">
@@ -69,6 +69,9 @@
6969
<!--</fileset>-->
7070
<!--</copy>-->
7171

72+
<copy file="${project.root}/LICENSE.txt" tofile="${build.dir}/LICENSE.txt" />
73+
<copy file="${project.root}/etc/logo.gif" tofile="${build.dir}/logo.gif" />
74+
7275
<copy todir="${build.dir}/src" tstamp="true">
7376
<fileset refid="sourcefileset"/>
7477
</copy>
@@ -91,4 +94,4 @@
9194

9295
<copy file="${dist.dir}/${dist.filename}.zpk" tofile="${dist.dir}/${build.filename.latest}" />
9396
</target>
94-
</project>
97+
</project>

deployment.in.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<release>%%project.version%%</release>
1111
</version>
1212
<releasedate>%%library.releasedate%%</releasedate>
13-
<icon>etc/logo.gif</icon>
13+
<icon>logo.gif</icon>
1414
<eula>LICENSE.txt</eula>
1515
<libdir>src</libdir>
1616
<scriptsdir>scripts</scriptsdir>

0 commit comments

Comments
 (0)