Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Limoncello framework

Copyright 2015-2017 info@neomerx.com

Copyright 2020 info@lolltec.com
2 changes: 2 additions & 0 deletions components/Application/NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Application utility components

Copyright 2015-2020 info@neomerx.com

Copyright 2020 info@lolltec.com
33 changes: 20 additions & 13 deletions components/Application/composer.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"name": "limoncello-php/application",
"name": "lolltec/limoncello-php-component-application",
"description": "PHP application components (PSR-7).",
"keywords": ["limoncello", "framework", "PSR-7", "PSR7"],
"homepage": "https://github.com/limoncello-php/framework/tree/master/components/Application",
"homepage": "https://github.com/lolltec/limoncello-php-framework/tree/master/components/Application",
"support": {
"issues": "https://github.com/limoncello-php/framework/issues"
"issues": "https://github.com/lolltec/limoncello-php-framework/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "neomerx",
"email": "info@neomerx.com"
},
{
"name": "lolltec",
"email": "info@lolltec.com"
}
],
"require": {
Expand All @@ -19,11 +23,11 @@
"doctrine/dbal": "^2.6.3",
"monolog/monolog": "^2.0",
"neomerx/cors-psr7": "^2.0.0",
"limoncello-php/contracts": "^0.10.0",
"limoncello-php/core": "^0.10.0",
"limoncello-php/auth": "^0.10.0",
"limoncello-php/l10n": "^0.10.0",
"limoncello-php/validation": "^0.10.0"
"lolltec/limoncello-php-component-contracts": "dev-master",
"lolltec/limoncello-php-component-core": "dev-master",
"lolltec/limoncello-php-component-auth": "dev-master",
"lolltec/limoncello-php-component-l10n": "dev-master",
"lolltec/limoncello-php-component-validation": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.9",
Expand All @@ -49,14 +53,17 @@
"test-unit-with-coverage": "phpdbg -qrr ./vendor/bin/phpunit --coverage-text",
"test-cs": "./vendor/bin/phpcs -p -s --standard=PSR2 ./src ./tests",
"test-md": "./vendor/bin/phpmd ./src text codesize,controversial,cleancode,design,unusedcode,naming",
"test-unit-php-7-4": "docker-compose run --rm cli_7_4_php php ./vendor/bin/phpunit",
"test-unit-php-7-4-win": "docker-compose run --rm cli_7_4_php ./vendor/bin/phpunit",
"test-unit-php-7-3": "docker-compose run --rm cli_7_3_php php ./vendor/bin/phpunit",
"test-unit-php-7-3-win": "docker-compose run --rm cli_7_3_php ./vendor/bin/phpunit",
"test-unit-php-7-2": "docker-compose run --rm cli_7_2_php php ./vendor/bin/phpunit",
"test-unit-php-7-2-win": "docker-compose run --rm cli_7_2_php ./vendor/bin/phpunit",
"test-unit-php-7-1": "docker-compose run --rm cli_7_1_php php ./vendor/bin/phpunit",
"test-unit-php-7-1-win": "docker-compose run --rm cli_7_1_php ./vendor/bin/phpunit",
"test-unit-hhvm": "docker-compose run --rm cli_hhvm php -d hhvm.php7.all=1 ./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-develop": "0.10.x-dev"
}
}
"extra": {},
"minimum-stability": "dev",
"prefer-stable": true
}
16 changes: 16 additions & 0 deletions components/Application/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
# https://docs.docker.com/compose/overview/
# https://docs.docker.com/compose/compose-file/

cli_7_1_php:
build: ./../../docker/7_1_cli
container_name: cli_7_1_php_limoncello
volumes:
- .:/app
working_dir: /app
tty: true

cli_7_2_php:
build: ./../../docker/7_2_cli
container_name: cli_7_2_php_limoncello
volumes:
- .:/app
working_dir: /app
tty: true

cli_7_3_php:
build: ./../../docker/7_3_cli
container_name: cli_7_3_php_limoncello
Expand Down
12 changes: 6 additions & 6 deletions components/Application/readme.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/limoncello-php-dist/application/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/limoncello-php-dist/application/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/limoncello-php-dist/application/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/limoncello-php-dist/application/?branch=master)
[![Build Status](https://travis-ci.org/limoncello-php-dist/application.svg?branch=master)](https://travis-ci.org/limoncello-php-dist/application)
[![License](https://img.shields.io/github/license/limoncello-php/framework.svg)](https://packagist.org/packages/limoncello-php/framework)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-application/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-application/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-application/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-application/?branch=master)
[![Build Status](https://travis-ci.org/lolltec/limoncello-php-component-application.svg?branch=master)](https://travis-ci.org/lolltec/limoncello-php-component-application)
[![License](https://img.shields.io/github/license/lolltec/limoncello-php-framework.svg)](https://packagist.org/packages/lolltec/limoncello-php-framework)

## Summary

This is application utility component for [Limoncello Framework](https://github.com/limoncello-php/framework).
This is application utility component for [Limoncello Framework](https://github.com/lolltec/limoncello-php-framework).

[More info](https://github.com/limoncello-php/framework).
[More info](https://github.com/lolltec/limoncello-php-framework).

## Testing

Expand Down
2 changes: 2 additions & 0 deletions components/Auth/NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Authorization implementation

Copyright 2015-2017 info@neomerx.com

Copyright 2020 info@lolltec.com
25 changes: 16 additions & 9 deletions components/Auth/composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
{
"name": "limoncello-php/auth",
"name": "lolltec/limoncello-php-component-auth",
"description": "Limoncello framework authorization support.",
"keywords": ["limoncello", "framework", "auth", "authorization"],
"homepage": "https://github.com/limoncello-php/framework/tree/master/components/Auth",
"homepage": "https://github.com/lolltec/limoncello-php-framework/tree/master/components/Auth",
"support": {
"issues": "https://github.com/limoncello-php/framework/issues"
"issues": "https://github.com/lolltec/limoncello-php-framework/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "neomerx",
"email": "info@neomerx.com"
},
{
"name": "lolltec",
"email": "info@lolltec.com"
}
],
"require": {
"php": ">=7.1.0",
"psr/log": "^1.0",
"limoncello-php/container": "^0.10.0"
"lolltec/limoncello-php-component-container": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.9",
Expand All @@ -42,14 +46,17 @@
"test-unit-with-coverage": "phpdbg -qrr ./vendor/bin/phpunit --coverage-text",
"test-cs": "./vendor/bin/phpcs -p -s --standard=PSR2 ./src ./tests",
"test-md": "./vendor/bin/phpmd ./src text codesize,controversial,cleancode,design,unusedcode,naming",
"test-unit-php-7-4": "docker-compose run --rm cli_7_4_php php ./vendor/bin/phpunit",
"test-unit-php-7-4-win": "docker-compose run --rm cli_7_4_php ./vendor/bin/phpunit",
"test-unit-php-7-3": "docker-compose run --rm cli_7_3_php php ./vendor/bin/phpunit",
"test-unit-php-7-3-win": "docker-compose run --rm cli_7_3_php ./vendor/bin/phpunit",
"test-unit-php-7-2": "docker-compose run --rm cli_7_2_php php ./vendor/bin/phpunit",
"test-unit-php-7-2-win": "docker-compose run --rm cli_7_2_php ./vendor/bin/phpunit",
"test-unit-php-7-1": "docker-compose run --rm cli_7_1_php php ./vendor/bin/phpunit",
"test-unit-php-7-1-win": "docker-compose run --rm cli_7_1_php ./vendor/bin/phpunit",
"test-unit-hhvm": "docker-compose run --rm cli_hhvm php -d hhvm.php7.all=1 ./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-develop": "0.7.x-dev"
}
}
"extra": {},
"minimum-stability": "dev",
"prefer-stable": true
}
2 changes: 2 additions & 0 deletions components/Commands/NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Commands support

Copyright 2015-2017 info@neomerx.com

Copyright 2020 info@lolltec.com
22 changes: 14 additions & 8 deletions components/Commands/composer.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
{
"name": "limoncello-php/commands",
"name": "lolltec/limoncello-php-component-commands",
"type": "composer-plugin",
"description": "Limoncello application commands support.",
"keywords": ["limoncello", "framework", "composer", "commands"],
"homepage": "https://github.com/limoncello-php/framework/tree/master/components/Commands",
"homepage": "https://github.com/lolltec/limoncello-php-framework/tree/master/components/Commands",
"support": {
"issues": "https://github.com/limoncello-php/framework/issues"
"issues": "https://github.com/lolltec/limoncello-php-framework/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "neomerx",
"email": "info@neomerx.com"
},
{
"name": "lolltec",
"email": "info@lolltec.com"
}
],
"require": {
"php": ">=7.1.0",
"composer-plugin-api": "^1.1",
"limoncello-php/common": "^0.10.0",
"limoncello-php/contracts": "^0.10.0"
"lolltec/limoncello-php-component-common": "dev-master",
"lolltec/limoncello-php-component-contracts": "dev-master"
},
"require-dev": {
"composer/composer": "^1.5.0",
Expand All @@ -44,18 +48,20 @@
"test-unit-with-coverage": "phpdbg -qrr ./vendor/bin/phpunit --coverage-text",
"test-cs": "./vendor/bin/phpcs -p -s --standard=PSR2 ./src ./tests",
"test-md": "./vendor/bin/phpmd ./src text codesize,controversial,cleancode,design,unusedcode,naming",
"test-unit-php-7-4": "docker-compose run --rm cli_7_4_php php ./vendor/bin/phpunit",
"test-unit-php-7-4-win": "docker-compose run --rm cli_7_4_php ./vendor/bin/phpunit",
"test-unit-php-7-3": "docker-compose run --rm cli_7_3_php php ./vendor/bin/phpunit",
"test-unit-php-7-3-win": "docker-compose run --rm cli_7_3_php ./vendor/bin/phpunit",
"test-unit-php-7-2": "docker-compose run --rm cli_7_2_php php ./vendor/bin/phpunit",
"test-unit-php-7-2-win": "docker-compose run --rm cli_7_2_php ./vendor/bin/phpunit",
"test-unit-php-7-1": "docker-compose run --rm cli_7_1_php php ./vendor/bin/phpunit",
"test-unit-php-7-1-win": "docker-compose run --rm cli_7_1_php ./vendor/bin/phpunit",
"test-unit-hhvm": "docker-compose run --rm cli_hhvm php -d hhvm.php7.all=1 ./vendor/bin/phpunit"
},
"config": {
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-develop": "0.10.x-dev"
},
"class": "Limoncello\\Commands\\ComposerPlugin"
},
"minimum-stability": "dev",
Expand Down
12 changes: 6 additions & 6 deletions components/Commands/readme.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/limoncello-php-dist/commands/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/limoncello-php-dist/commands/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/limoncello-php-dist/commands/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/limoncello-php-dist/commands/?branch=master)
[![Build Status](https://travis-ci.org/limoncello-php-dist/commands.svg?branch=master)](https://travis-ci.org/limoncello-php-dist/commands)
[![License](https://img.shields.io/github/license/limoncello-php/framework.svg)](https://packagist.org/packages/limoncello-php/framework)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-commands/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-commands/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-commands/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-commands/?branch=master)
[![Build Status](https://travis-ci.org/lolltec/limoncello-php-component-commands.svg?branch=master)](https://travis-ci.org/lolltec/limoncello-php-component-commands)
[![License](https://img.shields.io/github/license/lolltec/limoncello-php-framework.svg)](https://packagist.org/packages/lolltec/limoncello-php-framework)

## Summary

This is Commands support component for [Limoncello Framework](https://github.com/limoncello-php/framework).
This is Commands support component for [Limoncello Framework](https://github.com/lolltec/limoncello-php-framework).

[More info](https://github.com/limoncello-php/framework).
[More info](https://github.com/lolltec/limoncello-php-framework).

## Testing

Expand Down
2 changes: 2 additions & 0 deletions components/Common/NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Limoncello framework common components

Copyright 2015-2020 info@neomerx.com

Copyright 2020 info@lolltec.com
26 changes: 17 additions & 9 deletions components/Common/composer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
{
"name": "limoncello-php/common",
"name": "lolltec/limoncello-php-component-common",
"description": "PHP framework common (PSR-7).",
"keywords": ["limoncello", "framework", "PSR-7", "PSR7"],
"homepage": "https://github.com/limoncello-php/framework/tree/master/components/Common",
"homepage": "https://github.com/lolltec/limoncello-php-framework/tree/master/components/Common",
"support": {
"issues": "https://github.com/limoncello-php/framework/issues"
"issues": "https://github.com/lolltec/limoncello-php-framework/issues"
},
"license": "Apache-2.0",
"authors": [
{
"name": "neomerx",
"email": "info@neomerx.com"
},
{
"name": "lolltec",
"email": "info@lolltec.com"
}
],
"require": {
"php": ">=7.3.0",
"limoncello-php/contracts": "^0.10.0"
"lolltec/limoncello-php-component-contracts": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.9",
Expand All @@ -41,12 +45,16 @@
"test-cs": "./vendor/bin/phpcs -p -s --standard=PSR2 ./src ./tests",
"test-md": "./vendor/bin/phpmd ./src text codesize,controversial,cleancode,design,unusedcode,naming",
"test-unit-php-7-4": "docker-compose run --rm cli_7_4_php php ./vendor/bin/phpunit",
"test-unit-php-7-4-win": "docker-compose run --rm cli_7_4_php ./vendor/bin/phpunit",
"test-unit-php-7-3": "docker-compose run --rm cli_7_3_php php ./vendor/bin/phpunit",
"test-unit-php-7-3-win": "docker-compose run --rm cli_7_3_php ./vendor/bin/phpunit",
"test-unit-php-7-2": "docker-compose run --rm cli_7_2_php php ./vendor/bin/phpunit",
"test-unit-php-7-2-win": "docker-compose run --rm cli_7_2_php ./vendor/bin/phpunit",
"test-unit-php-7-1": "docker-compose run --rm cli_7_1_php php ./vendor/bin/phpunit",
"test-unit-php-7-1-win": "docker-compose run --rm cli_7_1_php ./vendor/bin/phpunit",
"test-unit-hhvm": "docker-compose run --rm cli_hhvm php -d hhvm.php7.all=1 ./vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-develop": "0.10.x-dev"
}
}
"extra": {},
"minimum-stability": "dev",
"prefer-stable": true
}
16 changes: 16 additions & 0 deletions components/Common/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
# https://docs.docker.com/compose/overview/
# https://docs.docker.com/compose/compose-file/

cli_7_1_php:
build: ./../../docker/7_1_cli
container_name: cli_7_1_php_limoncello
volumes:
- .:/app
working_dir: /app
tty: true

cli_7_2_php:
build: ./../../docker/7_2_cli
container_name: cli_7_2_php_limoncello
volumes:
- .:/app
working_dir: /app
tty: true

cli_7_3_php:
build: ./../../docker/7_3_cli
container_name: cli_7_3_php_limoncello
Expand Down
12 changes: 6 additions & 6 deletions components/Common/readme.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/limoncello-php-dist/common/badges/quality-scommon.png?b=master)](https://scrutinizer-ci.com/g/limoncello-php-dist/common/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/limoncello-php-dist/common/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/limoncello-php-dist/common/?branch=master)
[![Build Status](https://travis-ci.org/limoncello-php-dist/common.svg?branch=master)](https://travis-ci.org/limoncello-php-dist/common)
[![License](https://img.shields.io/github/license/limoncello-php/framework.svg)](https://packagist.org/packages/limoncello-php/framework)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-common/badges/quality-scommon.png?b=master)](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-common/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-common/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/lolltec/limoncello-php-component-common/?branch=master)
[![Build Status](https://travis-ci.org/lolltec/limoncello-php-component-common.svg?branch=master)](https://travis-ci.org/lolltec/limoncello-php-component-common)
[![License](https://img.shields.io/github/license/lolltec/limoncello-php-framework.svg)](https://packagist.org/packages/lolltec/limoncello-php-framework)

## Summary

This is common components for [Limoncello Framework](https://github.com/limoncello-php/framework).
This is common components for [Limoncello Framework](https://github.com/lolltec/limoncello-php-framework).

[More info](https://github.com/limoncello-php/framework).
[More info](https://github.com/lolltec/limoncello-php-framework).

## Testing

Expand Down
2 changes: 2 additions & 0 deletions components/Container/NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Container implementation

Copyright 2015-2017 info@neomerx.com

Copyright 2020 info@lolltec.com
Loading