-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump smarty/smarty from 5.0.2 to 5.1.0 #55
- Loading branch information
1 parent
0125ad1
commit ce0fad4
Showing
658 changed files
with
24,593 additions
and
1,207 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
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,19 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
*.php text eol=lf | ||
*.y text eol=lf | ||
*.lex text eol=lf | ||
|
||
# exclude from git export | ||
/tests export-ignore | ||
/utilities export-ignore | ||
/docker-compose.yml export-ignore | ||
/.github export-ignore | ||
/run_tests_for_all_php_versions.sh export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/make-release.sh export-ignore | ||
/phpunit.sh export-ignore | ||
/phpunit.xml export-ignore | ||
/TODO.md export-ignore |
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,85 @@ | ||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
name: CI | ||
|
||
jobs: | ||
tests: | ||
name: Tests | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
env: | ||
PHP_EXTENSIONS: dom, json, libxml, mbstring, pdo_sqlite, soap, xml, xmlwriter | ||
PHP_INI_VALUES: assert.exception=1, zend.assertions=1 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
|
||
php-version: | ||
- "7.2" | ||
- "7.3" | ||
- "7.4" | ||
- "8.0" | ||
- "8.1" | ||
- "8.2" | ||
- "8.3" | ||
|
||
compiler: | ||
- default | ||
|
||
include: | ||
- os: ubuntu-latest | ||
php-version: "8.0" | ||
compiler: jit | ||
- os: ubuntu-latest | ||
php-version: "8.1" | ||
compiler: jit | ||
- os: ubuntu-latest | ||
php-version: "8.2" | ||
compiler: jit | ||
- os: ubuntu-latest | ||
php-version: "8.3" | ||
compiler: jit | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Override PHP ini values for JIT compiler | ||
if: matrix.compiler == 'jit' | ||
run: echo "PHP_INI_VALUES::assert.exception=1, zend.assertions=1, opcache.enable=1, opcache.enable_cli=1, opcache.optimization_level=-1, opcache.jit=1255, opcache.jit_buffer_size=32M" >> $GITHUB_ENV | ||
|
||
- name: Install PHP with extensions | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
coverage: pcov | ||
extensions: ${{ env.PHP_EXTENSIONS }} | ||
ini-values: ${{ env.PHP_INI_VALUES }} | ||
|
||
- name: Cache Composer packages | ||
id: composer-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: v5r2-${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
v5r1-${{ runner.os }}-php-${{ matrix.php-version }}- | ||
- name: Install dependencies | ||
uses: php-actions/composer@v6 | ||
|
||
- name: Run make | ||
run: make -B | ||
|
||
- name: Run tests with phpunit | ||
run: php ./vendor/phpunit/phpunit/phpunit |
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,9 @@ | ||
|
||
.idea/ | ||
|
||
/site | ||
|
||
phpunit* | ||
.phpunit.result.cache | ||
vendor/* | ||
composer.lock |
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
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,75 @@ | ||
version: "2" | ||
services: | ||
base: | ||
build: | ||
context: . | ||
dockerfile: ./utilities/testrunners/php72/Dockerfile | ||
volumes: | ||
- smarty-code:/app | ||
working_dir: /app | ||
php72: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php72/Dockerfile | ||
php73: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php73/Dockerfile | ||
php74: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php74/Dockerfile | ||
php80: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php80/Dockerfile | ||
php81: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php81/Dockerfile | ||
php82: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php82/Dockerfile | ||
php83: | ||
extends: | ||
service: base | ||
build: | ||
dockerfile: ./utilities/testrunners/php83/Dockerfile | ||
volumes: | ||
smarty-code: | ||
|
||
x-mutagen: | ||
sync: | ||
defaults: | ||
symlink: | ||
mode: "posix-raw" | ||
ignore: | ||
vcs: true | ||
paths: | ||
- ".docker" | ||
- ".env.docker" | ||
- ".bundles" | ||
- "docker-compose.yml" | ||
- ".idea" | ||
- ".DS_Store" | ||
mode: "two-way-resolved" | ||
configurationBeta: | ||
permissions: | ||
defaultOwner: "id:${APP_USER_ID}" | ||
defaultGroup: "id:${APP_GROUP_ID}" | ||
defaultFileMode: 0666 | ||
defaultDirectoryMode: 0755 | ||
permissions: | ||
defaultOwner: "id:${APP_USER_ID}" | ||
defaultGroup: "id:${APP_GROUP_ID}" | ||
smarty-code: | ||
alpha: "." | ||
beta: "volume://smarty-code" | ||
|
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
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
Oops, something went wrong.