forked from mrtnzlml-archive/zlml.cz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
178 changed files
with
5,730 additions
and
18,508 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "vendor-client/" | ||
} |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
log/* | ||
temp/* | ||
vendor/* | ||
vendor-client/* | ||
|
||
!.gitignore | ||
!.htaccess | ||
|
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,22 +1,43 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- hhvm | ||
- hhvm-nightly | ||
|
||
env: | ||
global: | ||
- TESTER_PHP_BIN=php | ||
matrix: | ||
- DB=mysql | ||
- DB=pgsql | ||
|
||
matrix: | ||
allow_failures: | ||
- php: 5.3.3 | ||
- php: 5.6 | ||
- php: hhvm | ||
- php: hhvm-nightly | ||
- env: DB=pgsql | ||
exclude: | ||
- php: hhvm | ||
env: TESTER_PHP_BIN=php-cgi #FIXME | ||
- php: hhvm-nightly | ||
env: TESTER_PHP_BIN=php-cgi #FIXME | ||
|
||
script: vendor/bin/tester tests -s -c tests/php.ini | ||
script: | ||
- vendor/bin/tester tests -p $TESTER_PHP_BIN -s -c tests/php.ini | ||
|
||
after_failure: | ||
- cat app/config/config.local.neon; echo; echo; | ||
|
||
before_script: | ||
- mysql -u root -e 'create database zeminem;' | ||
- mysql -u root -D zeminem < zeminem.sql | ||
- mysql -u root -D zeminem < diff.sql | ||
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -u root -e 'create database blog_mysql;'; fi" | ||
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'create database blog_pgsql;' -U postgres; fi" | ||
- composer selfupdate | ||
- composer update | ||
- composer install --prefer-dist --no-dev | ||
- sh -c "if [ '$DB' = 'mysql' ]; then php www/index.php -u root -n blog_mysql; fi" | ||
- sh -c "if [ '$DB' = 'pgsql' ]; then php www/index.php -u postgres -n blog_pgsql -d pgsql; fi" | ||
|
||
notifications: | ||
email: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace App\AdminModule; | ||
|
||
use App; | ||
|
||
/** | ||
* Class BasePresenter | ||
* @package App\AdminModule | ||
*/ | ||
abstract class BasePresenter extends App\BasePresenter { | ||
|
||
} |
Oops, something went wrong.