FIX: handling of dependencies
This commit is contained in:
@ -1,6 +1,12 @@
|
|||||||
FROM php:7.4-fpm
|
FROM php:7.4-fpm
|
||||||
|
|
||||||
RUN docker-php-ext-install pdo pdo_mysql
|
RUN apt-get update && apt-get install -y libzip-dev libicu-dev git
|
||||||
|
|
||||||
|
RUN docker-php-ext-install pdo pdo_mysql zip intl
|
||||||
|
|
||||||
RUN pecl install xdebug-3.0.3 \
|
RUN pecl install xdebug-3.0.3 \
|
||||||
&& docker-php-ext-enable xdebug
|
&& docker-php-ext-enable xdebug
|
||||||
|
|
||||||
|
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
||||||
|
|
||||||
|
WORKDIR /code
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
"description" : "Asset manager module for my apps",
|
"description" : "Asset manager module for my apps",
|
||||||
"type" : "library",
|
"type" : "library",
|
||||||
"require" : {
|
"require" : {
|
||||||
"aldarien/config" : "dev-master",
|
"aldarien/config" : "*",
|
||||||
"aldarien/contract" : "dev-master"
|
"aldarien/contract" : "*"
|
||||||
},
|
},
|
||||||
"require-dev" : {
|
"require-dev" : {
|
||||||
"phpunit/phpunit" : "^6.3"
|
"phpunit/phpunit" : "^6.3"
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"aldarien/contract": "dev-master",
|
"aldarien/contract": "*",
|
||||||
"aldarien/root": "dev-master",
|
"aldarien/root": "*",
|
||||||
"symfony/yaml": "^3.3"
|
"symfony/yaml": "^3.3"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"type" : "library",
|
"type" : "library",
|
||||||
"require-dev" : {
|
"require-dev" : {
|
||||||
"phpunit/phpunit" : "^6",
|
"phpunit/phpunit" : "^6",
|
||||||
"aldarien/config": "dev-master"
|
"aldarien/config": "*"
|
||||||
},
|
},
|
||||||
"license" : "MIT",
|
"license" : "MIT",
|
||||||
"authors" : [{
|
"authors" : [{
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"type" : "library",
|
"type" : "library",
|
||||||
"require" : {
|
"require" : {
|
||||||
"wixel/gump" : "^1.5",
|
"wixel/gump" : "^1.5",
|
||||||
"aldarien/contract" : "dev-master"
|
"aldarien/contract" : "*"
|
||||||
},
|
},
|
||||||
"require-dev" : {
|
"require-dev" : {
|
||||||
"phpunit/phpunit" : "^6.3"
|
"phpunit/phpunit" : "^6.3"
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"type": "library",
|
"type": "library",
|
||||||
"require": {
|
"require": {
|
||||||
"aura/session": "^2.1",
|
"aura/session": "^2.1",
|
||||||
"aldarien/contract": "dev-master"
|
"aldarien/contract": "*"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^6.3"
|
"phpunit/phpunit": "^6.3"
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
"description" : "Get relative path uri",
|
"description" : "Get relative path uri",
|
||||||
"type" : "library",
|
"type" : "library",
|
||||||
"require" : {
|
"require" : {
|
||||||
"aldarien/contract" : "dev-master",
|
"aldarien/contract" : "*",
|
||||||
"aldarien/root" : "dev-master",
|
"aldarien/root" : "*",
|
||||||
"league/uri": "^5.2",
|
"league/uri": "^5.2",
|
||||||
"sabre/uri": "^2.1"
|
"sabre/uri": "^2.1"
|
||||||
},
|
},
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
"type": "library",
|
"type": "library",
|
||||||
"require": {
|
"require": {
|
||||||
"philo/laravel-blade": "^3.1",
|
"philo/laravel-blade": "^3.1",
|
||||||
"aldarien/contract": "dev-master",
|
"aldarien/contract": "*",
|
||||||
"aldarien/config": "dev-master"
|
"aldarien/config": "*"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
|
@ -3,27 +3,27 @@
|
|||||||
"description" : "Intranet portal for Incoviba",
|
"description" : "Intranet portal for Incoviba",
|
||||||
"type" : "project",
|
"type" : "project",
|
||||||
"require" : {
|
"require" : {
|
||||||
"aldarien/config" : "dev-master",
|
"aldarien/config" : "*",
|
||||||
"aldarien/asset" : "dev-master",
|
"aldarien/asset" : "*",
|
||||||
"aldarien/format" : "dev-master",
|
"aldarien/format" : "*",
|
||||||
"aldarien/response" : "dev-master",
|
"aldarien/response" : "*",
|
||||||
"aldarien/view" : "dev-master",
|
"aldarien/view" : "*",
|
||||||
"aldarien/session" : "dev-master",
|
"aldarien/session" : "*",
|
||||||
|
"aldarien/url": "*",
|
||||||
"j4mie/paris" : "^1.5",
|
"j4mie/paris" : "^1.5",
|
||||||
"danielstjules/stringy" : "^3.1",
|
"danielstjules/stringy" : "^3.1",
|
||||||
"phpoffice/phpspreadsheet": "1-beta",
|
"phpoffice/phpspreadsheet": "1-beta",
|
||||||
"aldarien/url": "dev-master",
|
|
||||||
"nesbot/carbon": "^2",
|
"nesbot/carbon": "^2",
|
||||||
"phpoffice/phpword": "^0.14.0",
|
"phpoffice/phpword": "^0.14.0",
|
||||||
"slam/php-excel": "^4.4",
|
"slam/php-excel": "^4.4",
|
||||||
"fabpot/goutte": "^3.2",
|
"fabpot/goutte": "^3.2",
|
||||||
"incoviba/modelos": "dev-master",
|
"incoviba/modelos": "*",
|
||||||
"slim/slim": "4.x-dev",
|
"slim/slim": "4.x-dev",
|
||||||
"php-di/slim-bridge": "dev-master",
|
"php-di/slim-bridge": "dev-master",
|
||||||
"rubellum/slim-blade-view": "dev-master",
|
"rubellum/slim-blade-view": "dev-master",
|
||||||
"nyholm/psr7": "1.4.x-dev",
|
"nyholm/psr7": "1.4.x-dev",
|
||||||
"nyholm/psr7-server": "dev-master",
|
"nyholm/psr7-server": "dev-master",
|
||||||
"vlucas/phpdotenv": "5.3.x-dev"
|
"vlucas/phpdotenv": "^5.3"
|
||||||
},
|
},
|
||||||
"require-dev" : {
|
"require-dev" : {
|
||||||
"phpunit/phpunit" : "^6.3",
|
"phpunit/phpunit" : "^6.3",
|
||||||
@ -52,15 +52,12 @@
|
|||||||
"type": "path",
|
"type": "path",
|
||||||
"url": "./aldarien/**",
|
"url": "./aldarien/**",
|
||||||
"options": {
|
"options": {
|
||||||
"symlink": false
|
"symlink": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"url": "./incoviba/modelos",
|
"url": "./incoviba/modelos"
|
||||||
"options": {
|
|
||||||
"symlink": false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user