Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UPDATE] Converted to namespaces #60

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
93db178
Added travis-ci test file
kersten Jan 19, 2016
6cd49c6
removed blank line
kersten Jan 19, 2016
81a6934
Added typo3/cms to require-dev
kersten Jan 19, 2016
6b8bb33
Test typo3 travis.yml
kersten Jan 19, 2016
3256b84
removed unused stuff
kersten Jan 19, 2016
501ee5f
Added namespaces
kersten Jan 19, 2016
53bec4e
Fixed namespace for test
kersten Jan 19, 2016
84ec4f8
Namespaces Tests
kersten Jan 19, 2016
e4c57a9
Renamed because of namespace
kersten Jan 19, 2016
8e9002f
run unit test
kersten Jan 19, 2016
466f6fa
fixed binary
kersten Jan 19, 2016
7440d65
Fixed class not found and added travis ci icon
kersten Jan 19, 2016
f7a5498
Added bin dir
kersten Jan 19, 2016
88180d3
Added .editorconfig file
kersten Jan 20, 2016
01666a5
Removed ExtensionManagementUtility from tests
kersten Jan 20, 2016
ad4f64a
Setup bootstrap from core
kersten Jan 20, 2016
8cf6b5d
Removed old style class names
kersten Jan 20, 2016
eaf8ebc
Added version to composer.json
kersten Jan 20, 2016
f3d32a4
Renamed classes in comments
kersten Jan 20, 2016
d408da9
Renamed other Tx_Yag occurrences
kersten Jan 20, 2016
33274dc
removed unused require_once comments
kersten Jan 21, 2016
9812c4c
Fixed ObjectStorage classnames
kersten Jan 22, 2016
b9d4c3f
added namespace to ObjectStorage arrays
kersten Jan 22, 2016
38a5c8c
Reformatted code accordingly to .editorconfig
kersten Jan 22, 2016
8a496e0
Reformatted accordingly to .editorconfig
kersten Jan 22, 2016
eb43c01
reformatted accordingly to .editorconfig
kersten Jan 22, 2016
28ec5da
Added fqdn to @var because reflection is not properly working
kersten Jan 22, 2016
f66f4e8
Added fqdn to restrictedClassname
kersten Jan 22, 2016
2c33acf
Fixed reflection and namespace stuff
kersten Jan 22, 2016
3258ee5
Added vendor name for namespaces
kersten Feb 11, 2016
bc19194
Removed backslash
kersten Feb 11, 2016
37c207b
Merge remote-tracking branch 'YAG-Gallery/master' into namespaces
kersten Mar 20, 2016
225e81d
Merge remote-tracking branch 'YAG-Gallery/master' into namespaces
kersten Apr 20, 2016
197b7c3
Merge remote-tracking branch 'origin/namespaces' into namespaces
kersten Apr 20, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[{composer.json,.travis.yml}]
indent_style = space
indent_size = 2
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Tests/Behaviour/vendor
doc/.*
*.DS_Store
._*

vendor
47 changes: 47 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
language: php

matrix:
fast_finish: true

include:
- php: 5.5
env: UNIT_TESTS=yes FUNCTIONAL_TESTS=yes PHP_LINT=yes XLF_CHECK=yes SUBMODULE_TEST=yes
- php: 5.6
env: UNIT_TESTS=yes FUNCTIONAL_TESTS=yes PHP_LINT=yes
- php: 7
env: UNIT_TESTS=yes FUNCTIONAL_TESTS=yes PHP_LINT=yes

sudo: false

addons:
apt:
packages:
- parallel

cache:
directories:
- $HOME/.composer/cache

env:
global:
secure: NGVAI0ayw2h9pB2bi2u9AkfV1OKa2LCrGXNtxAvQhFxKW28qmeOUehFuacxpvCI5fA8Ae7oVo2Ba0vcpb5a3uJry1lMpxcn9Ic+voB7SwlCuL6Rx/vntPkYUH+58cC3t40yHKArCUE9KCJA6znNCaZ7MyG6dWHgry0cvAjVOQzE=

before_script:
- phpenv config-rm xdebug.ini
- rm -rf typo3/sysext/compatibility6
- if [ "$GITHUB_COMPOSER_AUTH" ]; then composer config -g github-oauth.github.com $GITHUB_COMPOSER_AUTH; fi
- composer install

script:
- >
if [[ "$UNIT_TESTS" == "yes" ]]; then
echo;
echo "Running unit tests";
./vendor/bin/phpunit -c phpunit.xml.dist
fi
- >
if [[ "$PHP_LINT" == "yes" ]]; then
echo;
echo "Running php lint";
find Classes/ -name \*.php -not -path "vendor/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;
fi
Loading