-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the travis bulding and composer settings
- Loading branch information
Roderik van der Veer
committed
Oct 15, 2012
1 parent
76a09fe
commit e5a8969
Showing
6 changed files
with
34 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
vendor/raven-php | ||
vendor/symfony | ||
vendor/ | ||
!vendor/.gitkeep | ||
.idea/ | ||
|
||
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
language: php | ||
php: | ||
- 5.3 | ||
- 5.4 | ||
|
||
env: | ||
- SYMFONY_VERSION=origin/2.0 | ||
- SYMFONY_VERSION=origin/master | ||
php: | ||
- 5.3 | ||
- 5.4 | ||
|
||
before_script: php vendor/vendors.php | ||
before_script: | ||
- curl -s http://getcomposer.org/installer | php | ||
- php composer.phar --dev install | ||
|
||
notifications: | ||
email: | ||
- [email protected] | ||
script: phpunit --debug | ||
|
||
notifications: | ||
email: | ||
- [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project name="KunstmaanSentryBundle" default="beforescripts"> | ||
<project name="kunstmaanbundles" default="beforescripts"> | ||
|
||
<target name="beforescripts" > | ||
<target name="beforescripts"> | ||
<echo msg="Running the before scripts..." /> | ||
|
||
<exec command="php vendors.php" dir="./vendor" /> | ||
|
||
<echo msg=" -- Installing composer..." /> | ||
<exec command="curl -s http://getcomposer.org/installer | php" dir="." /> | ||
<echo msg=" -- Installing dependencies..." /> | ||
<exec command="php composer.phar --dev install" dir="." /> | ||
<echo msg="Done running all the before scripts." /> | ||
</target> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.