Skip to content

Commit

Permalink
Unification of scalar functions and their definitions (#1177)
Browse files Browse the repository at this point in the history
* Unification of scalar functions and their definitions

* Fixed monorepo composer.json

* Added missing php extension to ci/cd

* Fixed invalid extension
  • Loading branch information
norberttech authored Aug 9, 2024
1 parent 2f11cec commit 50a9aa0
Show file tree
Hide file tree
Showing 122 changed files with 896 additions and 1,131 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib

- name: "Get Composer Cache Directory"
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib

- name: "Create cache directories"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib

- name: "Get Composer Cache Directory"
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr, brotli, lz4, zstd, snappy-https://github.com/kjdev/[email protected]
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib, brotli, lz4, zstd, snappy-https://github.com/kjdev/[email protected]
env:
SNAPPY_CONFIGURE_PREFIX_OPTS: "CXXFLAGS=-std=c++11"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-mutations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib

- name: "Get Composer Cache Directory"
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib

- name: "List PHP Extensions"
run: php -m
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
tools: composer:v2
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: :psr
extensions: :psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib

- name: "Get Composer Cache Directory"
id: composer-cache
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*",
"ext-xml": "*",
"ext-zlib": "*",
"composer-runtime-api": "^2.1",
"coduo/php-humanizer": "^5.0",
Expand All @@ -42,7 +42,6 @@
"aeon-php/calendar": "^1.0",
"fakerphp/faker": "^1.23",
"fig/log-test": "^1.1",
"moneyphp/money": "^4",
"nyholm/psr7": "^1.8",
"php-http/curl-client": "^2.2",
"php-http/mock-client": "^1.5",
Expand Down
90 changes: 1 addition & 89 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/adapter/etl-adapter-xml/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-dom": "*",
"ext-xmlreader": "*",
"ext-xml": "*",
"ext-writer": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*",
"flow-php/etl": "^0.8 || 1.x-dev"
},
"config": {
Expand Down
10 changes: 2 additions & 8 deletions src/core/etl/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,17 @@
"flow-php/rdsl": "^0.8 || 1.x-dev",
"flow-php/filesystem": "^0.8 || 1.x-dev",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"webmozart/glob": "^3.0 || ^4.0"
"webmozart/glob": "^3.0 || ^4.0",
"jawira/case-converter": "^3.4"
},
"require-dev": {
"jawira/case-converter": "^3.4",
"moneyphp/money": "^4",
"ramsey/uuid": "^4.5",
"symfony/uid": "^6.3 || ^7.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"suggest": {
"jawira/case-converter": "Provides CaseConverter that is required by the EntryNameCaseConverterTransformer",
"moneyphp/money": "Provides MoneyParser that is required by ToMoney scalar function",
"ramsey/uuid": "Provides scalar function `uuid_v4` and `uuid_v7` that allow generate uuid entry"
},
"license": "MIT",
"autoload": {
"files": [
Expand Down
Loading

0 comments on commit 50a9aa0

Please sign in to comment.