forked from kelvinmo/simplejwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
21 lines (20 loc) · 790 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<project default="phar" basedir=".">
<property name="phar.file" value="./bin/jwkstool.phar" />
<target name="phar">
<pharpackage destfile="${phar.file}" basedir="./" stub="build/jwkstool_pharstub.php" compression="bzip2">
<fileset dir="./bin">
<include name="jwkstool.php" />
</fileset>
<fileset dir="./src/SimpleJWT">
<include name="**/**" />
</fileset>
<fileset dir="vendor">
<include name="autoload.php" />
<include name="composer/*" />
<include name="symfony/**/**" />
</fileset>
</pharpackage>
<chmod file="${phar.file}" mode="0755" />
</target>
</project>