File tree 3 files changed +14
-6
lines changed
3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 25
25
uses : shivammathur/setup-php@v2
26
26
with :
27
27
php-version : ${{ matrix.php-versions }}
28
- extension-csv : mbstring, intl
28
+ extensions : mbstring
29
29
coverage : xdebug
30
- ini-values : post_max_size=256M, max_execution_time=180
31
- pecl : false
32
30
33
31
- name : Check PHP Version
34
32
run : php -v
Original file line number Diff line number Diff line change 1
1
FROM composer:latest AS composer
2
+
2
3
FROM php:8.1-fpm
4
+
3
5
COPY --from=composer /usr/bin/composer /usr/bin/composer
6
+
4
7
LABEL org.opencontainers.image.description="php-chmod is a PHP library for easily changing file/directory permissions recursively."
8
+
5
9
WORKDIR /app
6
10
COPY . .
7
- RUN apt-get update && apt-get -y upgrade && apt-get -y install zip
8
- RUN composer update
11
+
12
+ RUN apt-get update && apt-get -y upgrade \
13
+ && apt-get -y install zip \
14
+ && composer update
Original file line number Diff line number Diff line change 26
26
27
27
### Installation
28
28
29
- Run ` composer require mathiasreker/php-chmod `
29
+ Run:
30
+
31
+ ``` bash
32
+ composer require mathiasreker/php-chmod
33
+ ```
30
34
31
35
### Examples
32
36
You can’t perform that action at this time.
0 commit comments