Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
feat (Phing) added Phing Hello World
Browse files Browse the repository at this point in the history
  • Loading branch information
ilbonzo committed Oct 9, 2018
1 parent d95881c commit 28dad6d
Show file tree
Hide file tree
Showing 5 changed files with 262 additions and 0 deletions.
1 change: 1 addition & 0 deletions Phing/.gitignore
@@ -0,0 +1 @@
vendor
13 changes: 13 additions & 0 deletions Phing/README.md
@@ -0,0 +1,13 @@
## Phing Hello World


### Usage

```
$ composer install
$ phing
```

---

Created by [@ilbonzo](https://github.com/ilbonzo)
7 changes: 7 additions & 0 deletions Phing/build.xml
@@ -0,0 +1,7 @@
<?xml version="1.0"?>

<project name="hello-world" description="Hello world with Phing" default="main" >
<target name="main" description="Main target for Hello World">
<echo msg="Hello world!" />
</target>
</project>
13 changes: 13 additions & 0 deletions Phing/composer.json
@@ -0,0 +1,13 @@
{
"name": "ilbonzo/phing",
"description": "Hello World with phing",
"authors": [
{
"name": "Matteo Magni",
"email": "matteo@magni.me"
}
],
"require": {
"phing/phing": "^2.16"
}
}
228 changes: 228 additions & 0 deletions Phing/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 28dad6d

Please sign in to comment.