diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..f5936a6
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,13 @@
+# ignore everything by default
+*
+
+# copy these directories
+!bin/
+!docker/fairpm-wordpress
+
+# copy these files
+!.env
+!README.md
+!composer.json
+!composer.lock
+
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..7cb0253
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,15 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.{js,json,yml}]
+indent_size = 2
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.env.example b/.env.example
new file mode 100644
index 0000000..18417a3
--- /dev/null
+++ b/.env.example
@@ -0,0 +1,18 @@
+DATABASE_URL='mysql://wp:password@fairpm-db:3306/wordpress'
+DB_PREFIX='wp_'
+
+WP_ENV='development'
+WP_HOME='https://local.fair.pm'
+WP_SITEURL="${WP_HOME}/wp"
+
+# WP_DEBUG_LOG='/path/to/debug.log'
+
+###> Do not remove this comment, and do not add anything under it, as it will be replaced on install <###
+AUTH_KEY='generateme'
+SECURE_AUTH_KEY='generateme'
+LOGGED_IN_KEY='generateme'
+NONCE_KEY='generateme'
+AUTH_SALT='generateme'
+SECURE_AUTH_SALT='generateme'
+LOGGED_IN_SALT='generateme'
+NONCE_SALT='generateme'
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6384c23..f452411 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -2,11 +2,7 @@ name: Build and push container
on:
push:
- branches: [ main ]
-
-env:
- REGISTRY: ghcr.io
- IMAGE_NAME: ${{ github.repository }}
+ tags: [ 'v*' ]
jobs:
build:
@@ -16,15 +12,18 @@ jobs:
packages: write
steps:
- - name: Checkout repository
- uses: actions/checkout@v4
+ - name: Harden the runner (Audit all outbound calls)
+ uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
+ with:
+ egress-policy: audit
- - name: Log in to Container Registry
- uses: docker/login-action@v3
- with:
- registry: ${{ env.REGISTRY }}
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
+ - name: Checkout repository
+ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- - name: Build and push
- run: bin/build.sh
+ - name: Build and push
+ run: bin/build-and-push
+ env:
+ DOCKERFILE: docker/fairpm-wordpress/Dockerfile
+ IMAGE_NAME: ${{ github.repository }}
+ TAG: ${{ github.event.release.tag_name }}
+ REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.gitignore b/.gitignore
index 18c6b97..c23d9b1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,18 +1,26 @@
-.env.production
-gp-data/
+#### ignore all dotfiles and dot-dirs, with exceptions
+.*
+!.config/
+!.distignore
+!.dockerignore
+!.editorconfig
+!.env.example
+!.gitattributes
+!.gitignore
-# Installed via Composer
-content/mu-plugins/php-basic-auth/
-content/plugins/aws-ses-wp-mail/
-content/plugins/fair-plugin/
-content/plugins/git-updater/
-content/plugins/query-monitor/
-content/plugins/wp-redis/
-content/plugins/mini-fair-repo/
-content/plugins/aspireexplorer/
-content/plugins/public-post-preview/
-content/plugins/wordpress-seo/
-content/plugins/wordpress-seo-premium/
-content/themes/fair-parent-theme/
-vendor/
-wordpress/
+#### ignore these patterns
+*.bak
+*.log
+*.tmp
+*.local
+*.local.*
+*.secret
+*.secret.*
+
+#### ignore these specific directories
+/gp-data/
+/vendor/
+
+#### ignore these specific files
+auth.json
+docker-compose.override.yml
diff --git a/README.md b/README.md
index 4cc14d7..c5a6f4c 100644
--- a/README.md
+++ b/README.md
@@ -1,32 +1,26 @@
-# Server
+# fair.pm web site
-This is the overarching repo for the code deployed to our hosted server, running at https://fair.pm/
+This is the overarching repo for the code deployed to our hosted server, running at https://fair.pm/. It will eventually form a template repository for wordpress installations in general, but for now it's specifically configured for the fair.pm site.
+## Quick Start for Local Development
-## Local Development
-
-This repository is pre-configured with wp-env configuration. (Better Docker Compose setup coming soon!)
-
-You can set up a local environment using:
-
-```sh
-# First, install Composer dependencies.
-composer install
-
-# Then, start an environment.
-npx @wordpress/env start
+```
+bin/init
+bin/up
```
+## Local Development
-## Deployment
+The fair.pm server is built on the [Roots Bedrock](https://roots.io/bedrock/) distribution of WordPress, so all plugins and themes are managed via Composer.
-Deployment will eventually be automatic, but in the meantime, the infrastructure team needs to deploy the repository via Helm. Ping them when deployment is needed.
+Local development is primarily based on Docker containers, using a FrankenPHP web server container for WordPress, with other support containers defined in `docker-compose.yml`. The default configuration is to expose the server through Traefik at https://local.fair.pm (which always resolves to localhost), but local ports can be used instead by renaming the `docker-compose.override.example.yml` file to `docker-compose.override.yml` and editing it to your needs.
-To ignore files from deployment, specify them in `.distignore`.
+## Deployment
+TODO
## License
Licensed under the GNU General Public License, v2 or later. Copyright 2025 contributors.
-Incorporates code from [WordPress/wordpress.org](https://github.com/WordPress/wordpress.org). Licensed under the GNU General Public License, v2 or later. Copyright 2025 contributors.
+Incorporates code from [WordPress](https://github.com/WordPress/wordpress.org) and [Roots Bedrock](https://github.com/roots/bedrock). Licensed under the GNU General Public License, v2 or later. Copyright 2025 contributors.
diff --git a/bin/build-and-push b/bin/build-and-push
new file mode 100755
index 0000000..4c9e7cc
--- /dev/null
+++ b/bin/build-and-push
@@ -0,0 +1,37 @@
+#!/bin/bash
+# shellcheck disable=SC2086
+
+set -euxo pipefail
+
+here=$(dirname "$0")
+cd "$here/.."
+
+image=${IMAGE_NAME?required argument missing}
+dockerfile=${DOCKERFILE:-Dockerfile}
+tag=${TAG:-$(git describe --tags --abbrev=0)}
+platform=${PLATFORM:-linux/amd64,linux/arm64}
+target=${TARGET:-prod}
+
+registry=${REGISTRY:-ghcr.io}
+username=${REGISTRY_USERNAME:-required-but-ignored-on-ghcr}
+password=${REGISTRY_PASSWORD:-${GITHUB_TOKEN:-}}
+
+main () {
+ push_arg=''
+
+ if [[ -n ${password:-} ]]; then
+ echo "$password" | docker login "$registry" -u "$username" --password-stdin
+ push_arg='--push'
+ fi
+
+ docker buildx build \
+ --file "$dockerfile" \
+ --target "$target" \
+ --platform "$platform" \
+ --tag "ghcr.io/$image:$tag" \
+ --tag "ghcr.io/$image:latest" \
+ $push_arg \
+ .
+}
+
+main "$@"
diff --git a/bin/build.sh b/bin/build.sh
deleted file mode 100755
index 040a759..0000000
--- a/bin/build.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-# Build script that runs .build-script in a container and exports files
-set -x
-
-SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
-
-# Set up variables
-BUILD_DIR="/tmp/fairserver-build"
-CONTAINER_NAME="fair-builder"
-
-# Clean up any existing build directory
-rm -rf "$BUILD_DIR"
-
-# Make a clean copy of the repo, using rsync
-echo "Syncing to $BUILD_DIR…" >&2
-rsync \
- -a \
- --progress \
- --exclude='.git' \
- --exclude-from='.distignore' \
- "$SCRIPT_DIR/.." "$BUILD_DIR"
-
-# Run the build script inside a composer container
-echo "Running build script…" >&2
-docker run \
- --rm \
- --name "$CONTAINER_NAME" \
- -v "$BUILD_DIR:/app" \
- -w /app \
- composer:latest \
- bash -c "./.build-script"
-
-echo "Building image…" >&2
-docker build \
- --tag ghcr.io/fairpm/server:latest \
- --build-context src="$BUILD_DIR" \
- "$SCRIPT_DIR/container"
-
-echo "Pushing to GitHub Container Registry…" >&2
-docker push ghcr.io/fairpm/server:latest
diff --git a/bin/container/Dockerfile b/bin/container/Dockerfile
deleted file mode 100644
index 0091ea9..0000000
--- a/bin/container/Dockerfile
+++ /dev/null
@@ -1,56 +0,0 @@
-ARG ALPINE_VERSION=3.21
-ARG SRC_DIR
-FROM alpine:${ALPINE_VERSION}
-
-# Setup document root
-WORKDIR /app
-
-# Install packages and remove default server definition
-RUN apk add --no-cache \
- curl \
- php83 \
- php83-ctype \
- php83-curl \
- php83-dom \
- php83-fileinfo \
- php83-fpm \
- php83-gd \
- php83-intl \
- php83-mbstring \
- php83-mysqli \
- php83-opcache \
- php83-openssl \
- php83-phar \
- php83-session \
- php83-tokenizer \
- php83-xml \
- php83-xmlreader \
- php83-xmlwriter \
- supervisor
-
-# RUN ln -s /usr/bin/php83 /usr/bin/php
-RUN ln -s /usr/sbin/php-fpm83 /usr/sbin/php-fpm
-
-# Configure PHP-FPM
-ENV PHP_INI_DIR=/etc/php83
-COPY fpm-pool.conf ${PHP_INI_DIR}/php-fpm.d/www.conf
-COPY php.ini ${PHP_INI_DIR}/conf.d/custom.ini
-
-# Make sure files/folders needed by the processes are accessible when they run under the nobody user
-RUN chown -R nobody:nobody /app /run
-
-# Switch to use a non-root user from here on
-USER nobody
-
-# Add application
-COPY --chown=nobody --from=src . /app/
-
-# Expose the port nginx is reachable on
-EXPOSE 9000
-
-# Let supervisord start nginx & php-fpm
-# CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
-CMD ["php-fpm", "-F"]
-
-# Configure a healthcheck to validate that everything is up&running
-# HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1
diff --git a/bin/container/fpm-pool.conf b/bin/container/fpm-pool.conf
deleted file mode 100644
index 4be2061..0000000
--- a/bin/container/fpm-pool.conf
+++ /dev/null
@@ -1,56 +0,0 @@
-[global]
-; Log to stderr
-error_log = /dev/stderr
-
-[www]
-; The address on which to accept FastCGI requests.
-; Valid syntaxes are:
-; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
-; a specific port;
-; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
-; a specific port;
-; 'port' - to listen on a TCP socket to all addresses
-; (IPv6 and IPv4-mapped) on a specific port;
-; '/path/to/unix/socket' - to listen on a unix socket.
-; Note: This value is mandatory.
-listen = /run/php-fpm.sock
-
-; Enable status page
-pm.status_path = /fpm-status
-
-; Ondemand process manager
-pm = ondemand
-
-; The number of child processes to be created when pm is set to 'static' and the
-; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
-; This value sets the limit on the number of simultaneous requests that will be
-; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
-; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
-; CGI. The below defaults are based on a server without much resources. Don't
-; forget to tweak pm.* to fit your needs.
-; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
-; Note: This value is mandatory.
-pm.max_children = 100
-
-; The number of seconds after which an idle process will be killed.
-; Note: Used only when pm is set to 'ondemand'
-; Default Value: 10s
-pm.process_idle_timeout = 10s;
-
-; The number of requests each child process should execute before respawning.
-; This can be useful to work around memory leaks in 3rd party libraries. For
-; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
-; Default Value: 0
-pm.max_requests = 1000
-
-; Make sure the FPM workers can reach the environment variables for configuration
-clear_env = no
-
-; Catch output from PHP
-catch_workers_output = yes
-
-; Remove the 'child 10 said into stderr' prefix in the log and only show the actual message
-decorate_workers_output = no
-
-; Enable ping page to use in healthcheck
-ping.path = /fpm-ping
diff --git a/bin/container/php.ini b/bin/container/php.ini
deleted file mode 100644
index e4ffaef..0000000
--- a/bin/container/php.ini
+++ /dev/null
@@ -1,3 +0,0 @@
-[Date]
-date.timezone="UTC"
-expose_php=Off
\ No newline at end of file
diff --git a/composer.json b/composer.json
index eab6849..dff97ac 100644
--- a/composer.json
+++ b/composer.json
@@ -1,72 +1,122 @@
{
- "name": "fairpm/server",
- "type": "project",
- "repositories": {
- "my-yoast": {
- "type": "composer",
- "url": "https://my.yoast.com/packages/"
- },
- "0": {
- "type": "vcs",
- "url": "https://github.com/GlotPress/GlotPress"
- },
- "1": {
- "type": "vcs",
- "url": "https://github.com/fairpm/mini-fair-repo"
- },
- {
- "type": "vcs",
- "url": "https://github.com/aspirepress/AspireExplorer"
- },
- "2": {
- "type": "vcs",
- "url": "https://github.com/fairpm/fair-plugin"
- },
- "3": {
- "type": "vcs",
- "url": "https://github.com/ocean90/public-post-preview"
- }
- },
- "require": {
- "composer/installers": "~2",
- "humanmade/php-basic-auth": "^1.1",
- "glotpress/glotpress-wp": "^4.0.1",
- "johnbillion/query-monitor": "^3.17",
- "johnpbloch/wordpress": "^6.8",
- "pantheon-systems/wp-redis": "^1.4",
- "humanmade/wp-redis-predis-client": "^0.1.2",
- "afragen/git-updater": "^12.18",
- "fairpm/fair-parent-theme": "~1.0.1",
- "humanmade/aws-ses-wp-mail": "dev-master",
- "mcaskill/composer-exclude-files": "^4.0",
- "yoast/wordpress-seo": "*",
- "aspirepress/aspireexplorer": "^0.2",
- "fair/fair-plugin": "dev-main",
- "ocean90/public-post-preview": "^3.0",
- "yoast/wordpress-seo-premium": "^26.0",
- "humanmade/s3-uploads": "^3.0"
- },
- "extra": {
- "installer-paths": {
- "content/plugins/{$name}/": [
- "type:wordpress-plugin"
- ],
- "content/mu-plugins/{$name}/": [
- "type:wordpress-muplugin"
- ],
- "content/themes/{$name}/": [
- "type:wordpress-theme"
- ]
- },
- "exclude-from-files": [
- "freemius/wordpress-sdk/start.php"
- ]
- },
- "config": {
- "allow-plugins": {
- "composer/installers": true,
- "johnpbloch/wordpress-core-installer": true,
- "mcaskill/composer-exclude-files": true
- }
- }
+ "name": "fairpm/server",
+ "type": "project",
+ "license": "GPL-2.0-or-later",
+ "repositories": [
+ {
+ "type": "composer",
+ "url": "https://wpackagist.org",
+ "only": [
+ "wpackagist-plugin/*",
+ "wpackagist-theme/*"
+ ]
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/GlotPress/GlotPress",
+ "only": [
+ "glotpress/glotpress-wp"
+ ]
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/aspirepress/AspireExplorer",
+ "only": [
+ "aspirepress/aspireexplorer"
+ ]
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/fairpm/fair-plugin",
+ "only": [
+ "fairpm/fair-plugin"
+ ]
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/fairpm/fair-beacon",
+ "only": [
+ "fairpm/fair-beacon"
+ ]
+ },
+ {
+ "type": "vcs",
+ "url": "https://github.com/ocean90/public-post-preview",
+ "only": [
+ "ocean90/public-post-preview"
+ ]
+ },
+ {
+ "type": "composer",
+ "url": "https://my.yoast.com/packages/",
+ "only": [
+ "yoast/*"
+ ]
+ }
+ ],
+ "require": {
+ "php": ">=8.4",
+ "ext-apcu": "*",
+ "ext-sqlite3": "*",
+ "afragen/git-updater": "^12.21.0",
+ "aspirepress/aspireexplorer": "^0.2",
+ "composer/installers": "~2",
+ "fairpm/fair-beacon": "dev-main",
+ "fairpm/fair-parent-theme": "~1.0.5",
+ "fairpm/fair-plugin": "dev-main",
+ "glotpress/glotpress-wp": "^4.0.3",
+ "humanmade/aws-ses-wp-mail": "dev-master",
+ "humanmade/php-basic-auth": "^1.1.1",
+ "humanmade/s3-uploads": "^3.0.11",
+ "humanmade/wp-redis-predis-client": "^0.1.2",
+ "johnbillion/query-monitor": "^3.20.2",
+ "mcaskill/composer-exclude-files": "^4.0.1",
+ "ocean90/public-post-preview": "^3.0.1",
+ "oscarotero/env": "^2.1.1",
+ "pantheon-systems/wp-redis": "^1.4.7",
+ "roots/bedrock-autoloader": "^1.0.4",
+ "roots/wordpress": "^6.9.0",
+ "roots/wp-config": "^1.0",
+ "vlucas/phpdotenv": "^5.6.3",
+ "wpackagist-plugin/fastly": "^1.2.29",
+ "wpackagist-theme/twentytwentyfive": "^1.4",
+ "yoast/wordpress-seo": ">=26.4"
+ },
+ "require-dev": {
+ "roave/security-advisories": "dev-latest"
+ },
+ "suggest": {
+ "yoast/wordpress-seo-premium": "^26.0"
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true,
+ "extra": {
+ "installer-paths": {
+ "web/app/mu-plugins/{$name}/": [
+ "type:wordpress-muplugin"
+ ],
+ "web/app/plugins/{$name}/": [
+ "type:wordpress-plugin"
+ ],
+ "web/app/themes/{$name}/": [
+ "type:wordpress-theme"
+ ]
+ },
+ "wordpress-install-dir": "web/wp",
+ "exclude-from-files": [
+ "freemius/wordpress-sdk/start.php"
+ ]
+ },
+ "config": {
+ "allow-plugins": {
+ "composer/installers": true,
+ "mcaskill/composer-exclude-files": true,
+ "roots/wordpress-core-installer": true
+ },
+ "bump-after-update": true,
+ "notify-on-install": false,
+ "optimize-autoloader": true,
+ "preferred-install": "dist",
+ "sort-packages": true
+ }
}
diff --git a/composer.lock b/composer.lock
index e983544..4c4209c 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,33 +4,40 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "2d594a69208261c0558253b19cb445ad",
+ "content-hash": "f638c7f2053f8c2ded00d63fdfeaf77c",
"packages": [
{
"name": "afragen/git-updater",
- "version": "12.18.1",
+ "version": "12.21.0",
"source": {
"type": "git",
"url": "https://github.com/afragen/git-updater.git",
- "reference": "4fad507562869a80a6486883b87bae83922a6d41"
+ "reference": "f1386a77bb93cec3e8f5a135bd4a7e35ca89dede"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/afragen/git-updater/zipball/4fad507562869a80a6486883b87bae83922a6d41",
- "reference": "4fad507562869a80a6486883b87bae83922a6d41",
+ "url": "https://api.github.com/repos/afragen/git-updater/zipball/f1386a77bb93cec3e8f5a135bd4a7e35ca89dede",
+ "reference": "f1386a77bb93cec3e8f5a135bd4a7e35ca89dede",
"shasum": ""
},
"require": {
"afragen/singleton": "^1.0",
"afragen/wordpress-plugin-readme-parser": "^1",
"afragen/wp-dismiss-notice": "*",
+ "erusev/parsedown": "dev-master#0b274ac959624e6c6d647e9c9b6c2d20da242004",
"freemius/wordpress-sdk": "^2.12",
"php": ">=8.0"
},
"require-dev": {
+ "mcaskill/composer-exclude-files": "^4.0",
"wp-coding-standards/wpcs": "^3.0.0"
},
"type": "wordpress-plugin",
+ "extra": {
+ "exclude-from-files": [
+ "freemius/wordpress-sdk/start.php"
+ ]
+ },
"autoload": {
"psr-4": {
"Fragen\\Git_Updater\\": "src/Git_Updater/"
@@ -38,7 +45,7 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "GPL-3.0-or-later"
],
"authors": [
{
@@ -65,7 +72,7 @@
"type": "github"
}
],
- "time": "2025-08-06T23:27:09+00:00"
+ "time": "2025-12-31T20:02:11+00:00"
},
{
"name": "afragen/singleton",
@@ -115,20 +122,20 @@
},
{
"name": "afragen/wordpress-plugin-readme-parser",
- "version": "1.2024.12.10",
+ "version": "1.2025.12.6",
"source": {
"type": "git",
"url": "https://github.com/afragen/wordpress-plugin-readme-parser.git",
- "reference": "803ccfc442d956aa04d69f4b234eda5d7f03afc4"
+ "reference": "1fbb311ef5f31f0e1e2d8978f187c81c22b351c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/afragen/wordpress-plugin-readme-parser/zipball/803ccfc442d956aa04d69f4b234eda5d7f03afc4",
- "reference": "803ccfc442d956aa04d69f4b234eda5d7f03afc4",
+ "url": "https://api.github.com/repos/afragen/wordpress-plugin-readme-parser/zipball/1fbb311ef5f31f0e1e2d8978f187c81c22b351c5",
+ "reference": "1fbb311ef5f31f0e1e2d8978f187c81c22b351c5",
"shasum": ""
},
"require": {
- "erusev/parsedown": "^1.7",
+ "erusev/parsedown": "dev-master#0b274ac959624e6c6d647e9c9b6c2d20da242004",
"php": ">=5.4"
},
"type": "library",
@@ -155,9 +162,9 @@
],
"support": {
"issues": "https://github.com/afragen/wordpress-plugin-readme-parser/issues",
- "source": "https://github.com/afragen/wordpress-plugin-readme-parser/tree/1.2024.12.10"
+ "source": "https://github.com/afragen/wordpress-plugin-readme-parser/tree/1.2025.12.6"
},
- "time": "2024-12-10T23:43:17+00:00"
+ "time": "2025-12-06T17:41:45+00:00"
},
{
"name": "afragen/wp-dismiss-notice",
@@ -305,16 +312,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.356.23",
+ "version": "3.369.8",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "e9253cf6073f06080a7458af54e18fc474f0c864"
+ "reference": "2fa2011e2adc8e70b15b17c50d598fc44fc3106a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/e9253cf6073f06080a7458af54e18fc474f0c864",
- "reference": "e9253cf6073f06080a7458af54e18fc474f0c864",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2fa2011e2adc8e70b15b17c50d598fc44fc3106a",
+ "reference": "2fa2011e2adc8e70b15b17c50d598fc44fc3106a",
"shasum": ""
},
"require": {
@@ -327,7 +334,8 @@
"guzzlehttp/psr7": "^2.4.5",
"mtdowling/jmespath.php": "^2.8.0",
"php": ">=8.1",
- "psr/http-message": "^1.0 || ^2.0"
+ "psr/http-message": "^1.0 || ^2.0",
+ "symfony/filesystem": "^v5.4.45 || ^v6.4.3 || ^v7.1.0 || ^v8.0.0"
},
"require-dev": {
"andrewsville/php-token-reflection": "^1.4",
@@ -338,13 +346,11 @@
"doctrine/cache": "~1.4",
"ext-dom": "*",
"ext-openssl": "*",
- "ext-pcntl": "*",
"ext-sockets": "*",
- "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
+ "phpunit/phpunit": "^9.6",
"psr/cache": "^2.0 || ^3.0",
"psr/simple-cache": "^2.0 || ^3.0",
"sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
- "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
"yoast/phpunit-polyfills": "^2.0"
},
"suggest": {
@@ -352,6 +358,7 @@
"doctrine/cache": "To use the DoctrineCacheAdapter",
"ext-curl": "To send requests using cURL",
"ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
+ "ext-pcntl": "To use client-side monitoring",
"ext-sockets": "To use client-side monitoring"
},
"type": "library",
@@ -396,9 +403,69 @@
"support": {
"forum": "https://github.com/aws/aws-sdk-php/discussions",
"issues": "https://github.com/aws/aws-sdk-php/issues",
- "source": "https://github.com/aws/aws-sdk-php/tree/3.356.23"
+ "source": "https://github.com/aws/aws-sdk-php/tree/3.369.8"
+ },
+ "time": "2026-01-06T19:10:11+00:00"
+ },
+ {
+ "name": "brick/math",
+ "version": "0.14.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/brick/math.git",
+ "reference": "f05858549e5f9d7bb45875a75583240a38a281d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/brick/math/zipball/f05858549e5f9d7bb45875a75583240a38a281d0",
+ "reference": "f05858549e5f9d7bb45875a75583240a38a281d0",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.2"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.2",
+ "phpstan/phpstan": "2.1.22",
+ "phpunit/phpunit": "^11.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Brick\\Math\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Arbitrary-precision arithmetic library",
+ "keywords": [
+ "Arbitrary-precision",
+ "BigInteger",
+ "BigRational",
+ "arithmetic",
+ "bigdecimal",
+ "bignum",
+ "bignumber",
+ "brick",
+ "decimal",
+ "integer",
+ "math",
+ "mathematics",
+ "rational"
+ ],
+ "support": {
+ "issues": "https://github.com/brick/math/issues",
+ "source": "https://github.com/brick/math/tree/0.14.1"
},
- "time": "2025-09-22T18:10:31+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/BenMorel",
+ "type": "github"
+ }
+ ],
+ "time": "2025-11-24T14:40:29+00:00"
},
{
"name": "composer/installers",
@@ -548,25 +615,26 @@
},
{
"name": "erusev/parsedown",
- "version": "1.7.4",
+ "version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/erusev/parsedown.git",
- "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3"
+ "reference": "0b274ac959624e6c6d647e9c9b6c2d20da242004"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
- "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3",
+ "url": "https://api.github.com/repos/erusev/parsedown/zipball/0b274ac959624e6c6d647e9c9b6c2d20da242004",
+ "reference": "0b274ac959624e6c6d647e9c9b6c2d20da242004",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
- "php": ">=5.3.0"
+ "php": ">=7.1"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35"
+ "phpunit/phpunit": "^7.5|^8.5|^9.6"
},
+ "default-branch": true,
"type": "library",
"autoload": {
"psr-0": {
@@ -592,22 +660,116 @@
],
"support": {
"issues": "https://github.com/erusev/parsedown/issues",
- "source": "https://github.com/erusev/parsedown/tree/1.7.x"
+ "source": "https://github.com/erusev/parsedown/tree/master"
+ },
+ "time": "2025-08-31T07:57:44+00:00"
+ },
+ {
+ "name": "fairpm/fair-beacon",
+ "version": "dev-main",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fairpm/fair-beacon.git",
+ "reference": "76d97b5dda5648055d07ef3b3de4f0cf069a1f07"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fairpm/fair-beacon/zipball/76d97b5dda5648055d07ef3b3de4f0cf069a1f07",
+ "reference": "76d97b5dda5648055d07ef3b3de4f0cf069a1f07",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.3",
+ "simplito/elliptic-php": "^1.0",
+ "spomky-labs/cbor-php": "^3.1",
+ "yocto/yoclib-multibase": "^1.2"
+ },
+ "require-dev": {
+ "humanmade/coding-standards": "^1.2"
+ },
+ "default-branch": true,
+ "type": "wordpress-plugin",
+ "autoload": {
+ "classmap": [
+ "inc/"
+ ]
+ },
+ "scripts": {
+ "lint": [
+ "@php ./vendor/bin/phpcs ."
+ ],
+ "format": [
+ "@php ./vendor/bin/phpcbf ."
+ ]
+ },
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "FAIR Contributors"
+ }
+ ],
+ "description": "Transform your WP site into a FAIR Package Management Repository",
+ "homepage": "https://github.com/fairpm/fair-beacon",
+ "support": {
+ "issues": "https://github.com/fairpm/fair-beacon/issues",
+ "source": "https://github.com/fairpm/fair-beacon"
+ },
+ "time": "2026-01-07T17:45:36+00:00"
+ },
+ {
+ "name": "fairpm/fair-parent-theme",
+ "version": "1.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fairpm/fair-parent-theme.git",
+ "reference": "ea4d1b82583e68c9a4f498056fe2a750b375bd48"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fairpm/fair-parent-theme/zipball/ea4d1b82583e68c9a4f498056fe2a750b375bd48",
+ "reference": "ea4d1b82583e68c9a4f498056fe2a750b375bd48",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.4"
+ },
+ "type": "wordpress-theme",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "Contributors",
+ "homepage": "https://github.com/fairpm/fair-parent-theme/graphs/contributors"
+ }
+ ],
+ "description": "FAIR Package Manager network theme.",
+ "homepage": "https://github.com/fairpm/fair-parent-theme/",
+ "keywords": [
+ "fairpm",
+ "theme"
+ ],
+ "support": {
+ "issues": "https://github.com/fairpm/fair-parent-theme/issues",
+ "source": "https://github.com/fairpm/fair-parent-theme/tree/1.0.5"
},
- "time": "2019-12-30T22:54:17+00:00"
+ "time": "2025-10-21T18:55:12+00:00"
},
{
- "name": "fair/fair-plugin",
+ "name": "fairpm/fair-plugin",
"version": "dev-main",
"source": {
"type": "git",
"url": "https://github.com/fairpm/fair-plugin.git",
- "reference": "2246a7b6e9c10a2c0c1739509a6f42a409d7ec9b"
+ "reference": "d266c5c8260cd830070b36ece4c32aaf4ce6c430"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fairpm/fair-plugin/zipball/2246a7b6e9c10a2c0c1739509a6f42a409d7ec9b",
- "reference": "2246a7b6e9c10a2c0c1739509a6f42a409d7ec9b",
+ "url": "https://api.github.com/repos/fairpm/fair-plugin/zipball/d266c5c8260cd830070b36ece4c32aaf4ce6c430",
+ "reference": "d266c5c8260cd830070b36ece4c32aaf4ce6c430",
"shasum": ""
},
"require": {
@@ -670,68 +832,31 @@
],
"authors": [
{
- "name": "FAIR Contributors"
+ "name": "FAIR Contributors",
+ "email": "operations@fair.pm",
+ "homepage": "https://fair.pm"
}
],
"description": "Make your site more FAIR.",
"support": {
- "source": "https://github.com/fairpm/fair-plugin/tree/main",
- "issues": "https://github.com/fairpm/fair-plugin/issues"
- },
- "time": "2025-09-23T02:45:27+00:00"
- },
- {
- "name": "fairpm/fair-parent-theme",
- "version": "1.0.5",
- "source": {
- "type": "git",
- "url": "https://github.com/fairpm/fair-parent-theme.git",
- "reference": "ea4d1b82583e68c9a4f498056fe2a750b375bd48"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/fairpm/fair-parent-theme/zipball/ea4d1b82583e68c9a4f498056fe2a750b375bd48",
- "reference": "ea4d1b82583e68c9a4f498056fe2a750b375bd48",
- "shasum": ""
- },
- "require": {
- "php": ">=7.4"
- },
- "type": "wordpress-theme",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Contributors",
- "homepage": "https://github.com/fairpm/fair-parent-theme/graphs/contributors"
- }
- ],
- "description": "FAIR Package Manager network theme.",
- "homepage": "https://github.com/fairpm/fair-parent-theme/",
- "keywords": [
- "fairpm",
- "theme"
- ],
- "support": {
- "issues": "https://github.com/fairpm/fair-parent-theme/issues",
- "source": "https://github.com/fairpm/fair-parent-theme/tree/1.0.5"
+ "issues": "https://github.com/fairpm/fair-plugin/issues",
+ "source": "https://github.com/fairpm/fair-plugin",
+ "docs": "https://github.com/fairpm/fair-plugin/blob/main/README.md"
},
- "time": "2025-10-21T18:55:12+00:00"
+ "time": "2025-12-24T14:57:27+00:00"
},
{
"name": "freemius/wordpress-sdk",
- "version": "2.12.2",
+ "version": "2.13.0",
"source": {
"type": "git",
"url": "https://github.com/Freemius/wordpress-sdk.git",
- "reference": "241fbfc91151f85d8ebeb75343caf29bda1d3208"
+ "reference": "3cbe98b5bd0b0fb5ca4df97b8088592737ea4375"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Freemius/wordpress-sdk/zipball/241fbfc91151f85d8ebeb75343caf29bda1d3208",
- "reference": "241fbfc91151f85d8ebeb75343caf29bda1d3208",
+ "url": "https://api.github.com/repos/Freemius/wordpress-sdk/zipball/3cbe98b5bd0b0fb5ca4df97b8088592737ea4375",
+ "reference": "3cbe98b5bd0b0fb5ca4df97b8088592737ea4375",
"shasum": ""
},
"require": {
@@ -769,22 +894,22 @@
],
"support": {
"issues": "https://github.com/Freemius/wordpress-sdk/issues",
- "source": "https://github.com/Freemius/wordpress-sdk/tree/2.12.2"
+ "source": "https://github.com/Freemius/wordpress-sdk/tree/2.13.0"
},
- "time": "2025-09-15T14:36:55+00:00"
+ "time": "2025-11-11T07:52:08+00:00"
},
{
"name": "glotpress/glotpress-wp",
- "version": "4.0.1",
+ "version": "4.0.3",
"source": {
"type": "git",
"url": "https://github.com/GlotPress/GlotPress.git",
- "reference": "84cfcee8fec4de400469c901185fe1d65f7af797"
+ "reference": "b080352aad54b6680024bb0ef9a96ff351c17e6e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/GlotPress/GlotPress/zipball/84cfcee8fec4de400469c901185fe1d65f7af797",
- "reference": "84cfcee8fec4de400469c901185fe1d65f7af797",
+ "url": "https://api.github.com/repos/GlotPress/GlotPress/zipball/b080352aad54b6680024bb0ef9a96ff351c17e6e",
+ "reference": "b080352aad54b6680024bb0ef9a96ff351c17e6e",
"shasum": ""
},
"require": {
@@ -796,7 +921,7 @@
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.6.15",
"wp-coding-standards/wpcs": "^2.2",
- "yoast/phpunit-polyfills": "^2.0"
+ "yoast/phpunit-polyfills": "^4.0"
},
"type": "wordpress-plugin",
"scripts": {
@@ -829,7 +954,69 @@
"source": "https://github.com/GlotPress/GlotPress",
"docs": "https://glotpress.blog/the-manual/"
},
- "time": "2024-04-03T14:29:59+00:00"
+ "time": "2025-10-17T15:39:16+00:00"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
+ "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
+ ],
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-27T19:43:20+00:00"
},
{
"name": "guzzlehttp/guzzle",
@@ -1162,12 +1349,12 @@
"source": {
"type": "git",
"url": "https://github.com/humanmade/aws-ses-wp-mail.git",
- "reference": "4021bab5c881011fcdf626c91b2295cb422fbaed"
+ "reference": "91320c3bd270dcc8247cbe4cc607e0a2b64142ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/humanmade/aws-ses-wp-mail/zipball/4021bab5c881011fcdf626c91b2295cb422fbaed",
- "reference": "4021bab5c881011fcdf626c91b2295cb422fbaed",
+ "url": "https://api.github.com/repos/humanmade/aws-ses-wp-mail/zipball/91320c3bd270dcc8247cbe4cc607e0a2b64142ba",
+ "reference": "91320c3bd270dcc8247cbe4cc607e0a2b64142ba",
"shasum": ""
},
"require": {
@@ -1197,7 +1384,7 @@
"issues": "https://github.com/humanmade/aws-ses-wp-mail/issues",
"source": "https://github.com/humanmade/aws-ses-wp-mail"
},
- "time": "2025-09-10T10:48:58+00:00"
+ "time": "2025-10-08T09:48:26+00:00"
},
{
"name": "humanmade/php-basic-auth",
@@ -1322,16 +1509,16 @@
},
{
"name": "johnbillion/query-monitor",
- "version": "3.20.0",
+ "version": "3.20.2",
"source": {
"type": "git",
"url": "https://github.com/johnbillion/query-monitor.git",
- "reference": "ec24102fa79ca7f02b3e5d2643284c5a71588c62"
+ "reference": "40b9ba0d72a4d938a24aa6367b7715e8ae02e8d4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/johnbillion/query-monitor/zipball/ec24102fa79ca7f02b3e5d2643284c5a71588c62",
- "reference": "ec24102fa79ca7f02b3e5d2643284c5a71588c62",
+ "url": "https://api.github.com/repos/johnbillion/query-monitor/zipball/40b9ba0d72a4d938a24aa6367b7715e8ae02e8d4",
+ "reference": "40b9ba0d72a4d938a24aa6367b7715e8ae02e8d4",
"shasum": ""
},
"require": {
@@ -1385,7 +1572,7 @@
"support": {
"forum": "https://wordpress.org/support/plugin/query-monitor",
"issues": "https://github.com/johnbillion/query-monitor/issues",
- "security": "https://patchstack.com/database/vdp/query-monitor",
+ "security": "https://querymonitor.com/security/",
"source": "https://github.com/johnbillion/query-monitor"
},
"funding": [
@@ -1394,220 +1581,72 @@
"type": "github"
}
],
- "time": "2025-09-07T22:02:10+00:00"
+ "time": "2025-12-11T22:08:53+00:00"
},
{
- "name": "johnpbloch/wordpress",
- "version": "6.8.2",
+ "name": "mcaskill/composer-exclude-files",
+ "version": "v4.0.1",
"source": {
"type": "git",
- "url": "https://github.com/johnpbloch/wordpress.git",
- "reference": "f224d9b28c88048312f3fe635cb65ba66a936950"
+ "url": "https://github.com/mcaskill/composer-plugin-exclude-files.git",
+ "reference": "ed68fc7d6da2146ed2c32c92904587c9e03c985a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/johnpbloch/wordpress/zipball/f224d9b28c88048312f3fe635cb65ba66a936950",
- "reference": "f224d9b28c88048312f3fe635cb65ba66a936950",
+ "url": "https://api.github.com/repos/mcaskill/composer-plugin-exclude-files/zipball/ed68fc7d6da2146ed2c32c92904587c9e03c985a",
+ "reference": "ed68fc7d6da2146ed2c32c92904587c9e03c985a",
"shasum": ""
},
"require": {
- "johnpbloch/wordpress-core": "6.8.2",
- "johnpbloch/wordpress-core-installer": "^1.0 || ^2.0",
- "php": ">=7.0.0"
+ "composer-plugin-api": "^2.3",
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "composer/composer": "^2.3",
+ "phpstan/phpstan": "^1.11",
+ "symfony/phpunit-bridge": "^7.1"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "McAskill\\Composer\\ExcludeFilePlugin",
+ "branch-alias": {
+ "dev-main": "4.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "McAskill\\Composer\\": "src/"
+ }
},
- "type": "package",
"notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0-or-later"
+ "MIT"
],
"authors": [
{
- "name": "WordPress Community",
- "homepage": "https://wordpress.org/about/"
+ "name": "Chauncey McAskill",
+ "email": "chauncey@mcaskill.ca"
}
],
- "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
- "homepage": "https://wordpress.org/",
- "keywords": [
- "blog",
- "cms",
- "wordpress"
- ],
+ "description": "Exclude files from autoload_files.php",
"support": {
- "docs": "https://developer.wordpress.org/",
- "forum": "https://wordpress.org/support/",
- "irc": "irc://irc.freenode.net/wordpress",
- "issues": "https://core.trac.wordpress.org/",
- "source": "https://core.trac.wordpress.org/browser"
+ "issues": "https://github.com/mcaskill/composer-plugin-exclude-files/issues",
+ "source": "https://github.com/mcaskill/composer-plugin-exclude-files/tree/v4.0.1"
},
- "time": "2025-07-15T15:33:05+00:00"
+ "time": "2024-12-03T21:08:26+00:00"
},
{
- "name": "johnpbloch/wordpress-core",
- "version": "6.8.2",
+ "name": "mtdowling/jmespath.php",
+ "version": "2.8.0",
"source": {
"type": "git",
- "url": "https://github.com/johnpbloch/wordpress-core.git",
- "reference": "316a8fe38b6dde4e4f399946809f040462038403"
+ "url": "https://github.com/jmespath/jmespath.php.git",
+ "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/johnpbloch/wordpress-core/zipball/316a8fe38b6dde4e4f399946809f040462038403",
- "reference": "316a8fe38b6dde4e4f399946809f040462038403",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "php": ">=7.2.24"
- },
- "provide": {
- "wordpress/core-implementation": "6.8.2"
- },
- "type": "wordpress-core",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "WordPress Community",
- "homepage": "https://wordpress.org/about/"
- }
- ],
- "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
- "homepage": "https://wordpress.org/",
- "keywords": [
- "blog",
- "cms",
- "wordpress"
- ],
- "support": {
- "forum": "https://wordpress.org/support/",
- "irc": "irc://irc.freenode.net/wordpress",
- "issues": "https://core.trac.wordpress.org/",
- "source": "https://core.trac.wordpress.org/browser",
- "wiki": "https://codex.wordpress.org/"
- },
- "time": "2025-07-15T15:32:59+00:00"
- },
- {
- "name": "johnpbloch/wordpress-core-installer",
- "version": "2.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/johnpbloch/wordpress-core-installer.git",
- "reference": "237faae9a60a4a2e1d45dce1a5836ffa616de63e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/johnpbloch/wordpress-core-installer/zipball/237faae9a60a4a2e1d45dce1a5836ffa616de63e",
- "reference": "237faae9a60a4a2e1d45dce1a5836ffa616de63e",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.0 || ^2.0",
- "php": ">=5.6.0"
- },
- "conflict": {
- "composer/installers": "<1.0.6"
- },
- "require-dev": {
- "composer/composer": "^1.0 || ^2.0",
- "phpunit/phpunit": ">=5.7.27"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "johnpbloch\\Composer\\WordPressCorePlugin"
- },
- "autoload": {
- "psr-0": {
- "johnpbloch\\Composer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "John P. Bloch",
- "email": "me@johnpbloch.com"
- }
- ],
- "description": "A custom installer to handle deploying WordPress with composer",
- "keywords": [
- "wordpress"
- ],
- "support": {
- "issues": "https://github.com/johnpbloch/wordpress-core-installer/issues",
- "source": "https://github.com/johnpbloch/wordpress-core-installer/tree/master"
- },
- "time": "2020-04-16T21:44:57+00:00"
- },
- {
- "name": "mcaskill/composer-exclude-files",
- "version": "v4.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/mcaskill/composer-plugin-exclude-files.git",
- "reference": "ed68fc7d6da2146ed2c32c92904587c9e03c985a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mcaskill/composer-plugin-exclude-files/zipball/ed68fc7d6da2146ed2c32c92904587c9e03c985a",
- "reference": "ed68fc7d6da2146ed2c32c92904587c9e03c985a",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^2.3",
- "php": "^7.2.5 || ^8.0"
- },
- "require-dev": {
- "composer/composer": "^2.3",
- "phpstan/phpstan": "^1.11",
- "symfony/phpunit-bridge": "^7.1"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "McAskill\\Composer\\ExcludeFilePlugin",
- "branch-alias": {
- "dev-main": "4.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "McAskill\\Composer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Chauncey McAskill",
- "email": "chauncey@mcaskill.ca"
- }
- ],
- "description": "Exclude files from autoload_files.php",
- "support": {
- "issues": "https://github.com/mcaskill/composer-plugin-exclude-files/issues",
- "source": "https://github.com/mcaskill/composer-plugin-exclude-files/tree/v4.0.1"
- },
- "time": "2024-12-03T21:08:26+00:00"
- },
- {
- "name": "mtdowling/jmespath.php",
- "version": "2.8.0",
- "source": {
- "type": "git",
- "url": "https://github.com/jmespath/jmespath.php.git",
- "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
- "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
+ "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
+ "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
"shasum": ""
},
"require": {
@@ -1704,18 +1743,73 @@
],
"time": "2024-12-23T09:49:09+00:00"
},
+ {
+ "name": "oscarotero/env",
+ "version": "v2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/oscarotero/env.git",
+ "reference": "9f7d85cc6890f06a65bad4fe0077c070d596e4a4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/oscarotero/env/zipball/9f7d85cc6890f06a65bad4fe0077c070d596e4a4",
+ "reference": "9f7d85cc6890f06a65bad4fe0077c070d596e4a4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-ctype": "*",
+ "php": ">=7.1"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.16",
+ "phpunit/phpunit": ">=7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/env_function.php"
+ ],
+ "psr-4": {
+ "Env\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Oscar Otero",
+ "email": "oom@oscarotero.com",
+ "homepage": "http://oscarotero.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "Simple library to consume environment variables",
+ "homepage": "https://github.com/oscarotero/env",
+ "keywords": [
+ "env"
+ ],
+ "support": {
+ "email": "oom@oscarotero.com",
+ "issues": "https://github.com/oscarotero/env/issues",
+ "source": "https://github.com/oscarotero/env/tree/v2.1.1"
+ },
+ "time": "2024-12-03T01:02:28+00:00"
+ },
{
"name": "pantheon-systems/wp-redis",
- "version": "1.4.6",
+ "version": "1.4.7",
"source": {
"type": "git",
"url": "https://github.com/pantheon-systems/wp-redis.git",
- "reference": "bf76694482b2ef45f92bf4df136bf649ec3a5715"
+ "reference": "cb76681a17de4ca67f801b8ad1e2de5be8a0c1cd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pantheon-systems/wp-redis/zipball/bf76694482b2ef45f92bf4df136bf649ec3a5715",
- "reference": "bf76694482b2ef45f92bf4df136bf649ec3a5715",
+ "url": "https://api.github.com/repos/pantheon-systems/wp-redis/zipball/cb76681a17de4ca67f801b8ad1e2de5be8a0c1cd",
+ "reference": "cb76681a17de4ca67f801b8ad1e2de5be8a0c1cd",
"shasum": ""
},
"require-dev": {
@@ -1723,7 +1817,7 @@
"behat/mink-extension": "^2.2",
"behat/mink-goutte-driver": "^1.2",
"pantheon-systems/pantheon-wordpress-upstream-tests": "dev-master",
- "pantheon-systems/pantheon-wp-coding-standards": "^2.0",
+ "pantheon-systems/pantheon-wp-coding-standards": "^3.0",
"pantheon-systems/wpunit-helpers": "^2.0",
"phpunit/phpunit": "^9",
"yoast/phpunit-polyfills": "^4.0"
@@ -1746,9 +1840,84 @@
],
"support": {
"issues": "https://github.com/pantheon-systems/wp-redis/issues",
- "source": "https://github.com/pantheon-systems/wp-redis/tree/1.4.6"
+ "source": "https://github.com/pantheon-systems/wp-redis/tree/1.4.7"
+ },
+ "time": "2025-12-11T19:32:53+00:00"
+ },
+ {
+ "name": "phpoption/phpoption",
+ "version": "1.9.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/schmittjoh/php-option.git",
+ "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
+ "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-master": "1.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpOption\\": "src/PhpOption/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Johannes M. Schmitt",
+ "email": "schmittjoh@gmail.com",
+ "homepage": "https://github.com/schmittjoh"
+ },
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "Option Type for PHP",
+ "keywords": [
+ "language",
+ "option",
+ "php",
+ "type"
+ ],
+ "support": {
+ "issues": "https://github.com/schmittjoh/php-option/issues",
+ "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
},
- "time": "2025-06-17T23:17:31+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-27T19:41:33+00:00"
},
{
"name": "predis/predis",
@@ -2021,36 +2190,31 @@
"time": "2019-03-08T08:55:37+00:00"
},
{
- "name": "symfony/deprecation-contracts",
- "version": "v3.6.0",
+ "name": "roots/bedrock-autoloader",
+ "version": "1.0.4",
"source": {
"type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
+ "url": "https://github.com/roots/bedrock-autoloader.git",
+ "reference": "f508348a3365ab5ce7e045f5fd4ee9f0a30dd70f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
- "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "url": "https://api.github.com/repos/roots/bedrock-autoloader/zipball/f508348a3365ab5ce7e045f5fd4ee9f0a30dd70f",
+ "reference": "f508348a3365ab5ce7e045f5fd4ee9f0a30dd70f",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=7.1"
},
- "type": "library",
- "extra": {
- "thanks": {
- "url": "https://github.com/symfony/contracts",
- "name": "symfony/contracts"
- },
- "branch-alias": {
- "dev-main": "3.6-dev"
- }
+ "require-dev": {
+ "10up/wp_mock": "^0.4.2",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
+ "type": "library",
"autoload": {
- "files": [
- "function.php"
- ]
+ "psr-4": {
+ "Roots\\Bedrock\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -2058,17 +2222,541 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Nick Fox",
+ "email": "nick@foxaii.com",
+ "homepage": "https://github.com/foxaii"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Scott Walkinshaw",
+ "email": "scott.walkinshaw@gmail.com",
+ "homepage": "https://github.com/swalkinshaw"
+ },
+ {
+ "name": "Austin Pray",
+ "email": "austin@austinpray.com",
+ "homepage": "https://github.com/austinpray"
}
],
- "description": "A generic function and convention to trigger deprecation notices",
- "homepage": "https://symfony.com",
- "support": {
+ "description": "An autoloader that enables standard plugins to be required just like must-use plugins",
+ "keywords": [
+ "autoloader",
+ "bedrock",
+ "mu-plugin",
+ "must-use",
+ "plugin",
+ "wordpress"
+ ],
+ "support": {
+ "forum": "https://discourse.roots.io/",
+ "issues": "https://github.com/roots/bedrock-autoloader/issues",
+ "source": "https://github.com/roots/bedrock-autoloader/tree/1.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/roots",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/rootsdev",
+ "type": "patreon"
+ }
+ ],
+ "time": "2020-12-04T15:59:12+00:00"
+ },
+ {
+ "name": "roots/wordpress",
+ "version": "6.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/roots/wordpress.git",
+ "reference": "29e4eb49b2f4c591e39d4eb6705a27cf1ea40e45"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/roots/wordpress/zipball/29e4eb49b2f4c591e39d4eb6705a27cf1ea40e45",
+ "reference": "29e4eb49b2f4c591e39d4eb6705a27cf1ea40e45",
+ "shasum": ""
+ },
+ "require": {
+ "roots/wordpress-core-installer": "^3.0",
+ "roots/wordpress-no-content": "self.version"
+ },
+ "type": "metapackage",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT",
+ "GPL-2.0-or-later"
+ ],
+ "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
+ "homepage": "https://wordpress.org/",
+ "keywords": [
+ "blog",
+ "cms",
+ "wordpress"
+ ],
+ "support": {
+ "issues": "https://github.com/roots/wordpress/issues",
+ "source": "https://github.com/roots/wordpress/tree/6.9"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/roots",
+ "type": "github"
+ }
+ ],
+ "time": "2025-05-23T18:54:22+00:00"
+ },
+ {
+ "name": "roots/wordpress-core-installer",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/roots/wordpress-core-installer.git",
+ "reference": "714d2e2a9e523f6e7bde4810d5a04aedf0ec217f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/roots/wordpress-core-installer/zipball/714d2e2a9e523f6e7bde4810d5a04aedf0ec217f",
+ "reference": "714d2e2a9e523f6e7bde4810d5a04aedf0ec217f",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.0 || ^2.0",
+ "php": ">=7.2.24"
+ },
+ "conflict": {
+ "composer/installers": "<1.0.6"
+ },
+ "replace": {
+ "johnpbloch/wordpress-core-installer": "*"
+ },
+ "require-dev": {
+ "composer/composer": "^1.0 || ^2.0",
+ "phpunit/phpunit": "^8.5"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Roots\\Composer\\WordPressCorePlugin"
+ },
+ "autoload": {
+ "psr-4": {
+ "Roots\\Composer\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "John P. Bloch",
+ "email": "me@johnpbloch.com"
+ },
+ {
+ "name": "Roots",
+ "email": "team@roots.io"
+ }
+ ],
+ "description": "A Composer custom installer to handle installing WordPress as a dependency",
+ "keywords": [
+ "wordpress"
+ ],
+ "support": {
+ "issues": "https://github.com/roots/wordpress-core-installer/issues",
+ "source": "https://github.com/roots/wordpress-core-installer/tree/3.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/roots",
+ "type": "github"
+ }
+ ],
+ "time": "2025-05-23T18:47:25+00:00"
+ },
+ {
+ "name": "roots/wordpress-no-content",
+ "version": "6.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/WordPress/WordPress.git",
+ "reference": "6.9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://downloads.wordpress.org/release/wordpress-6.9-no-content.zip",
+ "reference": "6.9",
+ "shasum": "2d8cb4b253b690e255afde1d451e87380e6a5cb5"
+ },
+ "require": {
+ "php": ">= 7.2.24"
+ },
+ "provide": {
+ "wordpress/core-implementation": "6.9"
+ },
+ "suggest": {
+ "ext-curl": "Performs remote request operations.",
+ "ext-dom": "Used to validate Text Widget content and to automatically configuring IIS7+.",
+ "ext-exif": "Works with metadata stored in images.",
+ "ext-fileinfo": "Used to detect mimetype of file uploads.",
+ "ext-hash": "Used for hashing, including passwords and update packages.",
+ "ext-imagick": "Provides better image quality for media uploads.",
+ "ext-json": "Used for communications with other servers.",
+ "ext-libsodium": "Validates Signatures and provides securely random bytes.",
+ "ext-mbstring": "Used to properly handle UTF8 text.",
+ "ext-mysqli": "Connects to MySQL for database interactions.",
+ "ext-openssl": "Permits SSL-based connections to other hosts.",
+ "ext-pcre": "Increases performance of pattern matching in code searches.",
+ "ext-xml": "Used for XML parsing, such as from a third-party site.",
+ "ext-zip": "Used for decompressing Plugins, Themes, and WordPress update packages."
+ },
+ "type": "wordpress-core",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "WordPress Community",
+ "homepage": "https://wordpress.org/about/"
+ }
+ ],
+ "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
+ "homepage": "https://wordpress.org/",
+ "keywords": [
+ "blog",
+ "cms",
+ "wordpress"
+ ],
+ "support": {
+ "docs": "https://developer.wordpress.org/",
+ "forum": "https://wordpress.org/support/",
+ "irc": "irc://irc.freenode.net/wordpress",
+ "issues": "https://core.trac.wordpress.org/",
+ "rss": "https://wordpress.org/news/feed/",
+ "source": "https://core.trac.wordpress.org/browser",
+ "wiki": "https://codex.wordpress.org/"
+ },
+ "funding": [
+ {
+ "url": "https://wordpressfoundation.org/donate/",
+ "type": "other"
+ }
+ ],
+ "time": "2025-12-02T19:09:36+00:00"
+ },
+ {
+ "name": "roots/wp-config",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/roots/wp-config.git",
+ "reference": "37c38230796119fb487fa03346ab0706ce6d4962"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/roots/wp-config/zipball/37c38230796119fb487fa03346ab0706ce6d4962",
+ "reference": "37c38230796119fb487fa03346ab0706ce6d4962",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5.7",
+ "roave/security-advisories": "dev-master",
+ "squizlabs/php_codesniffer": "^3.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Roots\\WPConfig\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Austin Pray",
+ "email": "austin@austinpray.com"
+ }
+ ],
+ "description": "Collect configuration values and safely define() them",
+ "support": {
+ "issues": "https://github.com/roots/wp-config/issues",
+ "source": "https://github.com/roots/wp-config/tree/master"
+ },
+ "time": "2018-08-10T14:18:38+00:00"
+ },
+ {
+ "name": "simplito/bigint-wrapper-php",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/simplito/bigint-wrapper-php.git",
+ "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
+ "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
+ "shasum": ""
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "BI\\": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Simplito Team",
+ "email": "s.smyczynski@simplito.com",
+ "homepage": "https://simplito.com"
+ }
+ ],
+ "description": "Common interface for php_gmp and php_bcmath modules",
+ "support": {
+ "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
+ "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
+ },
+ "time": "2018-02-27T12:38:08+00:00"
+ },
+ {
+ "name": "simplito/bn-php",
+ "version": "1.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/simplito/bn-php.git",
+ "reference": "83446756a81720eacc2ffb87ff97958431451fd6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/simplito/bn-php/zipball/83446756a81720eacc2ffb87ff97958431451fd6",
+ "reference": "83446756a81720eacc2ffb87ff97958431451fd6",
+ "shasum": ""
+ },
+ "require": {
+ "simplito/bigint-wrapper-php": "~1.0.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "BN\\": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Simplito Team",
+ "email": "s.smyczynski@simplito.com",
+ "homepage": "https://simplito.com"
+ }
+ ],
+ "description": "Big number implementation compatible with bn.js",
+ "support": {
+ "issues": "https://github.com/simplito/bn-php/issues",
+ "source": "https://github.com/simplito/bn-php/tree/1.1.4"
+ },
+ "time": "2024-01-10T16:16:59+00:00"
+ },
+ {
+ "name": "simplito/elliptic-php",
+ "version": "1.0.12",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/simplito/elliptic-php.git",
+ "reference": "be321666781be2be2c89c79c43ffcac834bc8868"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868",
+ "reference": "be321666781be2be2c89c79c43ffcac834bc8868",
+ "shasum": ""
+ },
+ "require": {
+ "ext-gmp": "*",
+ "simplito/bn-php": "~1.1.0"
+ },
+ "require-dev": {
+ "phpbench/phpbench": "@dev",
+ "phpunit/phpunit": "*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Elliptic\\": "lib/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Simplito Team",
+ "email": "s.smyczynski@simplito.com",
+ "homepage": "https://simplito.com"
+ }
+ ],
+ "description": "Fast elliptic curve cryptography",
+ "homepage": "https://github.com/simplito/elliptic-php",
+ "keywords": [
+ "Curve25519",
+ "ECDSA",
+ "Ed25519",
+ "EdDSA",
+ "cryptography",
+ "curve",
+ "curve25519-weier",
+ "ecc",
+ "ecdh",
+ "elliptic",
+ "nistp192",
+ "nistp224",
+ "nistp256",
+ "nistp384",
+ "nistp521",
+ "secp256k1"
+ ],
+ "support": {
+ "issues": "https://github.com/simplito/elliptic-php/issues",
+ "source": "https://github.com/simplito/elliptic-php/tree/1.0.12"
+ },
+ "time": "2024-01-09T14:57:04+00:00"
+ },
+ {
+ "name": "spomky-labs/cbor-php",
+ "version": "3.2.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Spomky-Labs/cbor-php.git",
+ "reference": "2a5fb86aacfe1004611370ead6caa2bfc88435d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Spomky-Labs/cbor-php/zipball/2a5fb86aacfe1004611370ead6caa2bfc88435d0",
+ "reference": "2a5fb86aacfe1004611370ead6caa2bfc88435d0",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.9|^0.10|^0.11|^0.12|^0.13|^0.14",
+ "ext-mbstring": "*",
+ "php": ">=8.0"
+ },
+ "require-dev": {
+ "ext-json": "*",
+ "roave/security-advisories": "dev-latest",
+ "symfony/error-handler": "^6.4|^7.1|^8.0",
+ "symfony/var-dumper": "^6.4|^7.1|^8.0"
+ },
+ "suggest": {
+ "ext-bcmath": "GMP or BCMath extensions will drastically improve the library performance. BCMath extension needed to handle the Big Float and Decimal Fraction Tags",
+ "ext-gmp": "GMP or BCMath extensions will drastically improve the library performance"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "CBOR\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Florent Morselli",
+ "homepage": "https://github.com/Spomky"
+ },
+ {
+ "name": "All contributors",
+ "homepage": "https://github.com/Spomky-Labs/cbor-php/contributors"
+ }
+ ],
+ "description": "CBOR Encoder/Decoder for PHP",
+ "keywords": [
+ "Concise Binary Object Representation",
+ "RFC7049",
+ "cbor"
+ ],
+ "support": {
+ "issues": "https://github.com/Spomky-Labs/cbor-php/issues",
+ "source": "https://github.com/Spomky-Labs/cbor-php/tree/3.2.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Spomky",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/FlorentMorselli",
+ "type": "patreon"
+ }
+ ],
+ "time": "2025-11-13T13:00:34+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.6-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
},
"funding": [
@@ -2085,32 +2773,263 @@
"type": "tidelift"
}
],
- "time": "2024-09-25T14:21:43+00:00"
+ "time": "2024-09-25T14:21:43+00:00"
+ },
+ {
+ "name": "symfony/filesystem",
+ "version": "v8.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "d937d400b980523dc9ee946bb69972b5e619058d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/d937d400b980523dc9ee946bb69972b5e619058d",
+ "reference": "d937d400b980523dc9ee946bb69972b5e619058d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.4",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
+ },
+ "require-dev": {
+ "symfony/process": "^7.4|^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/filesystem/tree/v8.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-01T09:13:36+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.33.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Ctype\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.33.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "shasum": ""
+ },
+ "require": {
+ "ext-iconv": "*",
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-12-23T08:48:59+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
+ "name": "symfony/polyfill-php80",
"version": "v1.33.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
- "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
"shasum": ""
},
"require": {
- "ext-iconv": "*",
"php": ">=7.2"
},
- "provide": {
- "ext-mbstring": "*"
- },
- "suggest": {
- "ext-mbstring": "For best performance"
- },
"type": "library",
"extra": {
"thanks": {
@@ -2123,14 +3042,21 @@
"bootstrap.php"
],
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- }
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
@@ -2140,17 +3066,16 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for the Mbstring extension",
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
- "mbstring",
"polyfill",
"portable",
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
},
"funding": [
{
@@ -2170,21 +3095,141 @@
"type": "tidelift"
}
],
- "time": "2024-12-23T08:48:59+00:00"
+ "time": "2025-01-02T08:10:11+00:00"
+ },
+ {
+ "name": "vlucas/phpdotenv",
+ "version": "v5.6.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vlucas/phpdotenv.git",
+ "reference": "955e7815d677a3eaa7075231212f2110983adecc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
+ "reference": "955e7815d677a3eaa7075231212f2110983adecc",
+ "shasum": ""
+ },
+ "require": {
+ "ext-pcre": "*",
+ "graham-campbell/result-type": "^1.1.4",
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.5",
+ "symfony/polyfill-ctype": "^1.26",
+ "symfony/polyfill-mbstring": "^1.26",
+ "symfony/polyfill-php80": "^1.26"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "ext-filter": "*",
+ "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+ },
+ "suggest": {
+ "ext-filter": "Required to use the boolean validator."
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-master": "5.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dotenv\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Vance Lucas",
+ "email": "vance@vancelucas.com",
+ "homepage": "https://github.com/vlucas"
+ }
+ ],
+ "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+ "keywords": [
+ "dotenv",
+ "env",
+ "environment"
+ ],
+ "support": {
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-12-27T19:49:13+00:00"
+ },
+ {
+ "name": "wpackagist-plugin/fastly",
+ "version": "1.2.29",
+ "source": {
+ "type": "svn",
+ "url": "https://plugins.svn.wordpress.org/fastly/",
+ "reference": "tags/1.2.29"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://downloads.wordpress.org/plugin/fastly.1.2.29.zip"
+ },
+ "require": {
+ "composer/installers": "^1.0 || ^2.0"
+ },
+ "type": "wordpress-plugin",
+ "homepage": "https://wordpress.org/plugins/fastly/"
+ },
+ {
+ "name": "wpackagist-theme/twentytwentyfive",
+ "version": "1.4",
+ "source": {
+ "type": "svn",
+ "url": "https://themes.svn.wordpress.org/twentytwentyfive/",
+ "reference": "1.4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip"
+ },
+ "require": {
+ "composer/installers": "^1.0 || ^2.0"
+ },
+ "type": "wordpress-theme",
+ "homepage": "https://wordpress.org/themes/twentytwentyfive/"
},
{
"name": "yoast/wordpress-seo",
- "version": "26.3",
+ "version": "26.7",
"source": {
"type": "git",
"url": "https://github.com/Yoast-dist/wordpress-seo.git",
- "reference": "d092a43b30d02c0c44423fff45152ade0a33f516"
+ "reference": "e69a8c3cd962b2322fa8ff353d34b5ab780fcd88"
},
"dist": {
"type": "zip",
- "url": "https://my.yoast.com/packages/dist/yoast/wordpress-seo/yoast-wordpress-seo-d092a43b30d02c0c44423fff45152ade0a33f516-zip-0b8a8e.zip",
- "reference": "d092a43b30d02c0c44423fff45152ade0a33f516",
- "shasum": "8793d7687e6990df0037f7b21a29a8b8ee38cfe7"
+ "url": "https://my.yoast.com/packages/dist/yoast/wordpress-seo/yoast-wordpress-seo-e69a8c3cd962b2322fa8ff353d34b5ab780fcd88-zip-12ae88.zip",
+ "reference": "e69a8c3cd962b2322fa8ff353d34b5ab780fcd88",
+ "shasum": "faacdcf0021cf3ddaeb74d96f9dd00750204c857"
},
"require": {
"composer/installers": "^1.12 || ^2.0",
@@ -2192,13 +3237,13 @@
"php": "^7.4| ^8.0"
},
"require-dev": {
- "guzzlehttp/guzzle": "7.8.1",
+ "guzzlehttp/guzzle": "7.10.0",
"humbug/php-scoper": "^0.13.4",
- "league/oauth2-client": "2.7.0",
- "psr/container": "1.0.0",
+ "league/oauth2-client": "2.8.1",
+ "psr/container": "1.1.1",
"psr/log": "^1.0",
- "symfony/config": "^3.4",
- "symfony/dependency-injection": "^3.4",
+ "symfony/config": "^5.4.46",
+ "symfony/dependency-injection": "^5.4.48",
"wpackagist-plugin/google-site-kit": "dev-trunk",
"yoast/wp-test-utils": "^1.2",
"yoast/yoastcs": "^3.2.0"
@@ -2251,7 +3296,7 @@
"Yoast\\WP\\SEO\\Composer\\Actions::check_coding_standards"
],
"check-cs-thresholds": [
- "@putenv YOASTCS_THRESHOLD_ERRORS=2381",
+ "@putenv YOASTCS_THRESHOLD_ERRORS=2379",
"@putenv YOASTCS_THRESHOLD_WARNINGS=251",
"Yoast\\WP\\SEO\\Composer\\Actions::check_cs_thresholds"
],
@@ -2303,7 +3348,8 @@
"@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=YoastSEO_Vendor --output-dir=./vendor_prefixed/psr --config=config/php-scoper/psr.inc.php --force --quiet"
],
"prefix-symfony": [
- "@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=YoastSEO_Vendor --output-dir=./vendor_prefixed/symfony/dependency-injection --config=config/php-scoper/dependency-injection.inc.php --force --quiet"
+ "@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=YoastSEO_Vendor --output-dir=./vendor_prefixed/symfony/dependency-injection --config=config/php-scoper/dependency-injection.inc.php --force --quiet",
+ "@php ./vendor/humbug/php-scoper/bin/php-scoper add-prefix --prefix=YoastSEO_Vendor --output-dir=./vendor_prefixed/symfony/service-contracts --config=config/php-scoper/service-contracts.inc.php --force --quiet"
],
"compile-di": [
"rm -f ./src/generated/container.php",
@@ -2345,178 +3391,1079 @@
"source": "https://github.com/Yoast/wordpress-seo",
"security": "https://yoast.com/security-program/"
},
- "time": "2025-11-04T09:44:16+00:00"
+ "time": "2026-01-07T09:31:45+00:00"
},
{
- "name": "yoast/wordpress-seo-premium",
- "version": "26.0",
+ "name": "yocto/yoclib-multibase",
+ "version": "v1.2.0",
"source": {
"type": "git",
- "url": "git@github.com:Yoast-dist/wordpress-seo-premium.git",
- "reference": "d186ba103125a0e2a815882c6d4997e28932875c"
+ "url": "https://github.com/yocto/yoclib-multibase-php.git",
+ "reference": "c7171897bf61dbc4a4cc6bb3f2fd5c3e62298e13"
},
"dist": {
"type": "zip",
- "url": "https://my.yoast.com/packages/dist/yoast/wordpress-seo-premium/yoast-wordpress-seo-premium-d186ba103125a0e2a815882c6d4997e28932875c-zip-718331.zip",
- "reference": "d186ba103125a0e2a815882c6d4997e28932875c",
- "shasum": "501ed73d6f3f58925eeb7a24d60532200d008689"
+ "url": "https://api.github.com/repos/yocto/yoclib-multibase-php/zipball/c7171897bf61dbc4a4cc6bb3f2fd5c3e62298e13",
+ "reference": "c7171897bf61dbc4a4cc6bb3f2fd5c3e62298e13",
+ "shasum": ""
},
"require": {
- "ext-filter": "*",
- "php": "^7.4 || ^8.0",
- "yoast/wordpress-seo": "^26.0"
+ "ext-mbstring": "*",
+ "php": "^7.4||^8"
},
"require-dev": {
- "wp-cli/i18n-command": "^2.6",
- "yoast/wp-test-utils": "^1.2",
- "yoast/yoastcs": "^3.1.0"
+ "phpunit/phpunit": "^7||^8||^9"
},
- "type": "wordpress-plugin",
- "extra": {
- "installer-paths": {
- "vendor/{$vendor}/{$name}": [
- "type:wordpress-plugin"
- ]
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "YOCLIB\\Multiformats\\Multibase\\": "src/"
}
},
- "autoload": {
- "classmap": [
- "classes/",
- "cli/",
- "src/",
- "premium.php"
- ],
- "exclude-from-classmap": [
- "/**/node_modules/",
- "vendor/composer/installers",
- "vendor/yoast/wordpress-seo"
- ]
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-3.0-or-later"
+ ],
+ "description": "This yocLibrary enables your project to encode and decode Multibases in PHP.",
+ "keywords": [
+ "composer",
+ "multibase",
+ "multiformats",
+ "php",
+ "yoclib",
+ "yocto"
+ ],
+ "support": {
+ "issues": "https://github.com/yocto/yoclib-multibase-php/issues",
+ "source": "https://github.com/yocto/yoclib-multibase-php/tree/v1.2.0"
},
- "autoload-dev": {
- "psr-4": {
- "Yoast\\WP\\SEO\\Premium\\Tests\\": "tests/"
- },
- "classmap": [
- "config/"
- ]
+ "time": "2024-06-05T13:42:01+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "roave/security-advisories",
+ "version": "dev-latest",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Roave/SecurityAdvisories.git",
+ "reference": "9a341b84b3ebb8ad254193ce440b44c7d4375a4f"
},
- "scripts": {
- "lint": [
- "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude node_modules --exclude .git --exclude wp-content"
- ],
- "lint-files": [
- "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint -e php --show-deprecated"
- ],
- "lint-branch": [
- "Yoast\\WP\\SEO\\Premium\\Config\\Composer\\Actions::lint_branch"
- ],
- "lint-staged": [
- "Yoast\\WP\\SEO\\Premium\\Config\\Composer\\Actions::lint_staged"
- ],
- "cs": [
- "Yoast\\WP\\SEO\\Premium\\Config\\Composer\\Actions::check_coding_standards"
- ],
- "check-cs-thresholds": [
- "@putenv YOASTCS_THRESHOLD_ERRORS=633",
- "@putenv YOASTCS_THRESHOLD_WARNINGS=74",
- "Yoast\\WP\\SEO\\Premium\\Config\\Composer\\Actions::check_cs_thresholds"
- ],
- "check-cs": [
- "@check-cs-warnings -n"
- ],
- "check-cs-errors": [
- "echo You can now just use check-cs, running that command now.",
- "composer check-cs"
- ],
- "check-cs-warnings": [
- "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs"
- ],
- "check-staged-cs": [
- "@check-cs-warnings --filter=GitStaged"
- ],
- "check-branch-cs": [
- "Yoast\\WP\\SEO\\Premium\\Config\\Composer\\Actions::check_branch_cs"
- ],
- "fix-cs": [
- "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
- ],
- "test": [
- "@php ./vendor/phpunit/phpunit/phpunit --no-coverage"
- ],
- "coverage": [
- "@php ./vendor/phpunit/phpunit/phpunit"
- ],
- "test-wp": [
- "@php ./vendor/phpunit/phpunit/phpunit -c phpunit-wp.xml.dist --no-coverage"
- ],
- "coverage-wp": [
- "@php ./vendor/phpunit/phpunit/phpunit -c phpunit-wp.xml.dist"
- ],
- "integration-test": [
- "@test-wp"
- ],
- "integration-coverage": [
- "@coverage-wp"
- ],
- "compile-di": [
- "rm -f ./src/generated/container.php",
- "rm -f ./src/generated/container.php.meta",
- "composer du --no-scripts",
- "Yoast\\WP\\SEO\\Premium\\Config\\Composer\\Actions::compile_dependency_injection_container"
- ],
- "post-install-cmd": [
- "cd vendor/yoast/wordpress-seo && composer install --no-interaction && cd ../..",
- "composer compile-di"
- ],
- "i18n-free-js": [
- "wp i18n make-pot . languages/yoastseo.pot --include=\"node_modules/yoastseo/src\" --allow-root",
- "wp i18n make-pot . languages/ai-frontend.pot --include=\"node_modules/@yoast/ai-frontend/dist\" --domain=\"wordpress-seo-premium\" --merge=\"languages/yoastseo.pot\" --allow-root",
- "wp i18n make-pot . languages/free-js.pot --include=\"node_modules/@yoast/social-metadata-previews/src\" --domain=\"wordpress-seo\" --merge=\"languages/ai-frontend.pot\" --allow-root",
- "rm languages/yoastseo.pot",
- "rm languages/ai-frontend.pot"
- ],
- "i18n-js": [
- "wp i18n make-pot . languages/wordpress-seo-premiumjs.pot --skip-php --exclude=\"assets/js/dist\" --merge=\"languages/free-js.pot\" --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/yoast/wordpress-seo-premium/issues\"}' --allow-root",
- "rm languages/free-js.pot"
- ],
- "i18n-php": [
- "wp i18n make-pot . languages/wordpress-seo-premium.pot --skip-js --exclude=\"artifact/*\" --merge=\"languages/wordpress-seo-premiumjs.pot\" --headers='{\"Report-Msgid-Bugs-To\":\"https://github.com/yoast/wordpress-seo-premium/issues\"}' --allow-root"
- ]
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/9a341b84b3ebb8ad254193ce440b44c7d4375a4f",
+ "reference": "9a341b84b3ebb8ad254193ce440b44c7d4375a4f",
+ "shasum": ""
+ },
+ "conflict": {
+ "3f/pygmentize": "<1.2",
+ "adaptcms/adaptcms": "<=1.3",
+ "admidio/admidio": "<=4.3.16",
+ "adodb/adodb-php": "<=5.22.9",
+ "aheinze/cockpit": "<2.2",
+ "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.07.2",
+ "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1",
+ "aimeos/ai-client-html": ">=2020.04.1,<2020.10.27|>=2021.04.1,<2021.10.22|>=2022.04.1,<2022.10.13|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.04.7",
+ "aimeos/ai-cms-grapesjs": ">=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.9|>=2023.04.1,<2023.10.15|>=2024.04.1,<2024.10.8|>=2025.04.1,<2025.10.2",
+ "aimeos/ai-controller-frontend": "<2020.10.15|>=2021.04.1,<2021.10.8|>=2022.04.1,<2022.10.8|>=2023.04.1,<2023.10.9|==2024.04.1",
+ "aimeos/aimeos-core": ">=2022.04.1,<2022.10.17|>=2023.04.1,<2023.10.17|>=2024.04.1,<2024.04.7",
+ "aimeos/aimeos-typo3": "<19.10.12|>=20,<20.10.5",
+ "airesvsg/acf-to-rest-api": "<=3.1",
+ "akaunting/akaunting": "<2.1.13",
+ "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
+ "alextselegidis/easyappointments": "<1.5.2.0-beta1",
+ "alexusmai/laravel-file-manager": "<=3.3.1",
+ "alt-design/alt-redirect": "<1.6.4",
+ "altcha-org/altcha": "<1.3.1",
+ "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
+ "amazing/media2click": ">=1,<1.3.3",
+ "ameos/ameos_tarteaucitron": "<1.2.23",
+ "amphp/artax": "<1.0.6|>=2,<2.0.6",
+ "amphp/http": "<=1.7.2|>=2,<=2.1",
+ "amphp/http-client": ">=4,<4.4",
+ "anchorcms/anchor-cms": "<=0.12.7",
+ "andreapollastri/cipi": "<=3.1.15",
+ "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<1.0.2|>=2,<2.2.5",
+ "aoe/restler": "<1.7.1",
+ "apache-solr-for-typo3/solr": "<2.8.3",
+ "apereo/phpcas": "<1.6",
+ "api-platform/core": "<3.4.17|>=4,<4.0.22|>=4.1,<4.1.5",
+ "api-platform/graphql": "<3.4.17|>=4,<4.0.22|>=4.1,<4.1.5",
+ "appwrite/server-ce": "<=1.2.1",
+ "arc/web": "<3",
+ "area17/twill": "<1.2.5|>=2,<2.5.3",
+ "artesaos/seotools": "<0.17.2",
+ "asymmetricrypt/asymmetricrypt": "<9.9.99",
+ "athlon1600/php-proxy": "<=5.1",
+ "athlon1600/php-proxy-app": "<=3",
+ "athlon1600/youtube-downloader": "<=4",
+ "austintoddj/canvas": "<=3.4.2",
+ "auth0/auth0-php": ">=3.3,<8.18",
+ "auth0/login": "<7.20",
+ "auth0/symfony": "<=5.5",
+ "auth0/wordpress": "<=5.4",
+ "automad/automad": "<2.0.0.0-alpha5",
+ "automattic/jetpack": "<9.8",
+ "awesome-support/awesome-support": "<=6.0.7",
+ "aws/aws-sdk-php": "<3.368",
+ "azuracast/azuracast": "<=0.23.1",
+ "b13/seo_basics": "<0.8.2",
+ "backdrop/backdrop": "<=1.32",
+ "backpack/crud": "<3.4.9",
+ "backpack/filemanager": "<2.0.2|>=3,<3.0.9",
+ "bacula-web/bacula-web": "<9.7.1",
+ "badaso/core": "<=2.9.11",
+ "bagisto/bagisto": "<2.3.10",
+ "barrelstrength/sprout-base-email": "<1.2.7",
+ "barrelstrength/sprout-forms": "<3.9",
+ "barryvdh/laravel-translation-manager": "<0.6.8",
+ "barzahlen/barzahlen-php": "<2.0.1",
+ "baserproject/basercms": "<=5.1.1",
+ "bassjobsen/bootstrap-3-typeahead": ">4.0.2",
+ "bbpress/bbpress": "<2.6.5",
+ "bcit-ci/codeigniter": "<3.1.3",
+ "bcosca/fatfree": "<3.7.2",
+ "bedita/bedita": "<4",
+ "bednee/cooluri": "<1.0.30",
+ "bigfork/silverstripe-form-capture": ">=3,<3.1.1",
+ "billz/raspap-webgui": "<3.3.6",
+ "binarytorch/larecipe": "<2.8.1",
+ "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
+ "blueimp/jquery-file-upload": "==6.4.4",
+ "bmarshall511/wordpress_zero_spam": "<5.2.13",
+ "bolt/bolt": "<3.7.2",
+ "bolt/core": "<=4.2",
+ "born05/craft-twofactorauthentication": "<3.3.4",
+ "bottelet/flarepoint": "<2.2.1",
+ "bref/bref": "<2.1.17",
+ "brightlocal/phpwhois": "<=4.2.5",
+ "brotkrueml/codehighlight": "<2.7",
+ "brotkrueml/schema": "<1.13.1|>=2,<2.5.1",
+ "brotkrueml/typo3-matomo-integration": "<1.3.2",
+ "buddypress/buddypress": "<7.2.1",
+ "bugsnag/bugsnag-laravel": ">=2,<2.0.2",
+ "bvbmedia/multishop": "<2.0.39",
+ "bytefury/crater": "<6.0.2",
+ "cachethq/cachet": "<2.5.1",
+ "cadmium-org/cadmium-cms": "<=0.4.9",
+ "cakephp/cakephp": "<3.10.3|>=4,<4.0.10|>=4.1,<4.1.4|>=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
+ "cakephp/database": ">=4.2,<4.2.12|>=4.3,<4.3.11|>=4.4,<4.4.10",
+ "cardgate/magento2": "<2.0.33",
+ "cardgate/woocommerce": "<=3.1.15",
+ "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
+ "cart2quote/module-quotation-encoded": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
+ "cartalyst/sentry": "<=2.1.6",
+ "catfan/medoo": "<1.7.5",
+ "causal/oidc": "<4",
+ "cecil/cecil": "<7.47.1",
+ "centreon/centreon": "<22.10.15",
+ "cesnet/simplesamlphp-module-proxystatistics": "<3.1",
+ "chriskacerguis/codeigniter-restserver": "<=2.7.1",
+ "chrome-php/chrome": "<1.14",
+ "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3",
+ "ckeditor/ckeditor": "<4.25",
+ "clickstorm/cs-seo": ">=6,<6.8|>=7,<7.5|>=8,<8.4|>=9,<9.3",
+ "co-stack/fal_sftp": "<0.2.6",
+ "cockpit-hq/cockpit": "<2.11.4",
+ "code16/sharp": "<9.11.1",
+ "codeception/codeception": "<3.1.3|>=4,<4.1.22",
+ "codeigniter/framework": "<3.1.10",
+ "codeigniter4/framework": "<4.6.2",
+ "codeigniter4/shield": "<1.0.0.0-beta8",
+ "codiad/codiad": "<=2.8.4",
+ "codingms/additional-tca": ">=1.7,<1.15.17|>=1.16,<1.16.9",
+ "codingms/modules": "<4.3.11|>=5,<5.7.4|>=6,<6.4.2|>=7,<7.5.5",
+ "commerceteam/commerce": ">=0.9.6,<0.9.9",
+ "components/jquery": ">=1.0.3,<3.5",
+ "composer/composer": "<1.10.27|>=2,<2.2.26|>=2.3,<2.9.3",
+ "concrete5/concrete5": "<9.4.3",
+ "concrete5/core": "<8.5.8|>=9,<9.1",
+ "contao-components/mediaelement": ">=2.14.2,<2.21.1",
+ "contao/comments-bundle": ">=2,<4.13.40|>=5.0.0.0-RC1-dev,<5.3.4",
+ "contao/contao": ">=3,<3.5.37|>=4,<4.4.56|>=4.5,<4.13.56|>=5,<5.3.38|>=5.4.0.0-RC1-dev,<5.6.1",
+ "contao/core": "<3.5.39",
+ "contao/core-bundle": "<4.13.57|>=5,<5.3.42|>=5.4,<5.6.5",
+ "contao/listing-bundle": ">=3,<=3.5.30|>=4,<4.4.8",
+ "contao/managed-edition": "<=1.5",
+ "corveda/phpsandbox": "<1.3.5",
+ "cosenary/instagram": "<=2.3",
+ "couleurcitron/tarteaucitron-wp": "<0.3",
+ "craftcms/cms": "<=4.16.16|>=5,<=5.8.20",
+ "croogo/croogo": "<=4.0.7",
+ "cuyz/valinor": "<0.12",
+ "czim/file-handling": "<1.5|>=2,<2.3",
+ "czproject/git-php": "<4.0.3",
+ "damienharper/auditor-bundle": "<5.2.6",
+ "dapphp/securimage": "<3.6.6",
+ "darylldoyle/safe-svg": "<1.9.10",
+ "datadog/dd-trace": ">=0.30,<0.30.2",
+ "datahihi1/tiny-env": "<1.0.3|>=1.0.9,<1.0.11",
+ "datatables/datatables": "<1.10.10",
+ "david-garcia/phpwhois": "<=4.3.1",
+ "dbrisinajumi/d2files": "<1",
+ "dcat/laravel-admin": "<=2.1.3|==2.2.0.0-beta|==2.2.2.0-beta",
+ "derhansen/fe_change_pwd": "<2.0.5|>=3,<3.0.3",
+ "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1|>=7,<7.4",
+ "desperado/xml-bundle": "<=0.1.7",
+ "dev-lancer/minecraft-motd-parser": "<=1.0.5",
+ "devcode-it/openstamanager": "<=2.9.4",
+ "devgroup/dotplant": "<2020.09.14-dev",
+ "digimix/wp-svg-upload": "<=1",
+ "directmailteam/direct-mail": "<6.0.3|>=7,<7.0.3|>=8,<9.5.2",
+ "dl/yag": "<3.0.1",
+ "dmk/webkitpdf": "<1.1.4",
+ "dnadesign/silverstripe-elemental": "<5.3.12",
+ "doctrine/annotations": "<1.2.7",
+ "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2",
+ "doctrine/common": "<2.4.3|>=2.5,<2.5.1",
+ "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2|>=3,<3.1.4",
+ "doctrine/doctrine-bundle": "<1.5.2",
+ "doctrine/doctrine-module": "<0.7.2",
+ "doctrine/mongodb-odm": "<1.0.2",
+ "doctrine/mongodb-odm-bundle": "<3.0.1",
+ "doctrine/orm": ">=1,<1.2.4|>=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
+ "dolibarr/dolibarr": "<21.0.3",
+ "dompdf/dompdf": "<2.0.4",
+ "doublethreedigital/guest-entries": "<3.1.2",
+ "drupal-pattern-lab/unified-twig-extensions": "<=0.1",
+ "drupal/access_code": "<2.0.5",
+ "drupal/acquia_dam": "<1.1.5",
+ "drupal/admin_audit_trail": "<1.0.5",
+ "drupal/ai": "<1.0.5",
+ "drupal/alogin": "<2.0.6",
+ "drupal/cache_utility": "<1.2.1",
+ "drupal/civictheme": "<1.12",
+ "drupal/commerce_alphabank_redirect": "<1.0.3",
+ "drupal/commerce_eurobank_redirect": "<2.1.1",
+ "drupal/config_split": "<1.10|>=2,<2.0.2",
+ "drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.4.9|>=10.5,<10.5.6|>=11,<11.1.9|>=11.2,<11.2.8",
+ "drupal/core-recommended": ">=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
+ "drupal/currency": "<3.5",
+ "drupal/drupal": ">=5,<5.11|>=6,<6.38|>=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8",
+ "drupal/email_tfa": "<2.0.6",
+ "drupal/formatter_suite": "<2.1",
+ "drupal/gdpr": "<3.0.1|>=3.1,<3.1.2",
+ "drupal/google_tag": "<1.8|>=2,<2.0.8",
+ "drupal/ignition": "<1.0.4",
+ "drupal/json_field": "<1.5",
+ "drupal/lightgallery": "<1.6",
+ "drupal/link_field_display_mode_formatter": "<1.6",
+ "drupal/matomo": "<1.24",
+ "drupal/oauth2_client": "<4.1.3",
+ "drupal/oauth2_server": "<2.1",
+ "drupal/obfuscate": "<2.0.1",
+ "drupal/plausible_tracking": "<1.0.2",
+ "drupal/quick_node_block": "<2",
+ "drupal/rapidoc_elements_field_formatter": "<1.0.1",
+ "drupal/reverse_proxy_header": "<1.1.2",
+ "drupal/simple_multistep": "<2",
+ "drupal/simple_oauth": ">=6,<6.0.7",
+ "drupal/spamspan": "<3.2.1",
+ "drupal/tfa": "<1.10",
+ "drupal/umami_analytics": "<1.0.1",
+ "duncanmcclean/guest-entries": "<3.1.2",
+ "dweeves/magmi": "<=0.7.24",
+ "ec-cube/ec-cube": "<2.4.4|>=2.11,<=2.17.1|>=3,<=3.0.18.0-patch4|>=4,<=4.1.2",
+ "ecodev/newsletter": "<=4",
+ "ectouch/ectouch": "<=2.7.2",
+ "egroupware/egroupware": "<23.1.20240624",
+ "elefant/cms": "<2.0.7",
+ "elgg/elgg": "<3.3.24|>=4,<4.0.5",
+ "elijaa/phpmemcacheadmin": "<=1.3",
+ "elmsln/haxcms": "<11.0.14",
+ "encore/laravel-admin": "<=1.8.19",
+ "endroid/qr-code-bundle": "<3.4.2",
+ "enhavo/enhavo-app": "<=0.13.1",
+ "enshrined/svg-sanitize": "<0.22",
+ "erusev/parsedown": "<1.7.2",
+ "ether/logs": "<3.0.4",
+ "evolutioncms/evolution": "<=3.2.3",
+ "exceedone/exment": "<4.4.3|>=5,<5.0.3",
+ "exceedone/laravel-admin": "<2.2.3|==3",
+ "ezsystems/demobundle": ">=5.4,<5.4.6.1-dev",
+ "ezsystems/ez-support-tools": ">=2.2,<2.2.3",
+ "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev",
+ "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev",
+ "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
+ "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.39|>=3.3,<3.3.39",
+ "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1|>=5.3.0.0-beta1,<5.3.5",
+ "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12",
+ "ezsystems/ezplatform-http-cache": "<2.3.16",
+ "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35",
+ "ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
+ "ezsystems/ezplatform-richtext": ">=2.3,<2.3.26|>=3.3,<3.3.40",
+ "ezsystems/ezplatform-solr-search-engine": ">=1.7,<1.7.12|>=2,<2.0.2|>=3.3,<3.3.15",
+ "ezsystems/ezplatform-user": ">=1,<1.0.1",
+ "ezsystems/ezpublish-kernel": "<6.13.8.2-dev|>=7,<7.5.31",
+ "ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.03.5.1",
+ "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
+ "ezsystems/repository-forms": ">=2.3,<2.3.2.1-dev|>=2.5,<2.5.15",
+ "ezyang/htmlpurifier": "<=4.2",
+ "facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
+ "facturascripts/facturascripts": "<=2025.4|==2025.11|==2025.41|==2025.43",
+ "fastly/magento2": "<1.2.26",
+ "feehi/cms": "<=2.1.1",
+ "feehi/feehicms": "<=2.1.1",
+ "fenom/fenom": "<=2.12.1",
+ "filament/actions": ">=3.2,<3.2.123",
+ "filament/filament": ">=4,<4.3.1",
+ "filament/infolists": ">=3,<3.2.115",
+ "filament/tables": ">=3,<3.2.115",
+ "filegator/filegator": "<7.8",
+ "filp/whoops": "<2.1.13",
+ "fineuploader/php-traditional-server": "<=1.2.2",
+ "firebase/php-jwt": "<6",
+ "fisharebest/webtrees": "<=2.1.18",
+ "fixpunkt/fp-masterquiz": "<2.2.1|>=3,<3.5.2",
+ "fixpunkt/fp-newsletter": "<1.1.1|>=1.2,<2.1.2|>=2.2,<3.2.6",
+ "flarum/core": "<1.8.10",
+ "flarum/flarum": "<0.1.0.0-beta8",
+ "flarum/framework": "<1.8.10",
+ "flarum/mentions": "<1.6.3",
+ "flarum/sticky": ">=0.1.0.0-beta14,<=0.1.0.0-beta15",
+ "flarum/tags": "<=0.1.0.0-beta13",
+ "floriangaerber/magnesium": "<0.3.1",
+ "fluidtypo3/vhs": "<5.1.1",
+ "fof/byobu": ">=0.3.0.0-beta2,<1.1.7",
+ "fof/pretty-mail": "<=1.1.2",
+ "fof/upload": "<1.2.3",
+ "foodcoopshop/foodcoopshop": ">=3.2,<3.6.1",
+ "fooman/tcpdf": "<6.2.22",
+ "forkcms/forkcms": "<5.11.1",
+ "fossar/tcpdf-parser": "<6.2.22",
+ "francoisjacquet/rosariosis": "<=11.5.1",
+ "frappant/frp-form-answers": "<3.1.2|>=4,<4.0.2",
+ "friendsofsymfony/oauth2-php": "<1.3",
+ "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2",
+ "friendsofsymfony/user-bundle": ">=1,<1.3.5",
+ "friendsofsymfony1/swiftmailer": ">=4,<5.4.13|>=6,<6.2.5",
+ "friendsofsymfony1/symfony1": ">=1.1,<1.5.19",
+ "friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
+ "friendsoftypo3/openid": ">=4.5,<4.5.31|>=4.7,<4.7.16|>=6,<6.0.11|>=6.1,<6.1.6",
+ "froala/wysiwyg-editor": "<=4.3",
+ "froxlor/froxlor": "<=2.2.5",
+ "frozennode/administrator": "<=5.0.12",
+ "fuel/core": "<1.8.1",
+ "funadmin/funadmin": "<=5.0.2",
+ "gaoming13/wechat-php-sdk": "<=1.10.2",
+ "genix/cms": "<=1.1.11",
+ "georgringer/news": "<1.3.3",
+ "geshi/geshi": "<=1.0.9.1",
+ "getformwork/formwork": "<2.2",
+ "getgrav/grav": "<1.11.0.0-beta1",
+ "getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1|>=5,<5.1.4",
+ "getkirby/kirby": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1",
+ "getkirby/panel": "<2.5.14",
+ "getkirby/starterkit": "<=3.7.0.2",
+ "gilacms/gila": "<=1.15.4",
+ "gleez/cms": "<=1.3|==2",
+ "globalpayments/php-sdk": "<2",
+ "goalgorilla/open_social": "<12.3.11|>=12.4,<12.4.10|>=13.0.0.0-alpha1,<13.0.0.0-alpha11",
+ "gogentooss/samlbase": "<1.2.7",
+ "google/protobuf": "<3.4",
+ "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3",
+ "gp247/core": "<1.1.24",
+ "gree/jose": "<2.2.1",
+ "gregwar/rst": "<1.0.3",
+ "grumpydictator/firefly-iii": "<6.1.17",
+ "gugoan/economizzer": "<=0.9.0.0-beta1",
+ "guzzlehttp/guzzle": "<6.5.8|>=7,<7.4.5",
+ "guzzlehttp/oauth-subscriber": "<0.8.1",
+ "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",
+ "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2",
+ "handcraftedinthealps/goodby-csv": "<1.4.3",
+ "harvesthq/chosen": "<1.8.7",
+ "helloxz/imgurl": "<=2.31",
+ "hhxsv5/laravel-s": "<3.7.36",
+ "hillelcoren/invoice-ninja": "<5.3.35",
+ "himiklab/yii2-jqgrid-widget": "<1.0.8",
+ "hjue/justwriting": "<=1",
+ "hov/jobfair": "<1.0.13|>=2,<2.0.2",
+ "httpsoft/http-message": "<1.0.12",
+ "hyn/multi-tenant": ">=5.6,<5.7.2",
+ "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.25|>=5,<5.0.3",
+ "ibexa/admin-ui-assets": ">=4.6.0.0-alpha1,<4.6.21",
+ "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2",
+ "ibexa/fieldtype-richtext": ">=4.6,<4.6.25|>=5,<5.0.3",
+ "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
+ "ibexa/http-cache": ">=4.6,<4.6.14",
+ "ibexa/post-install": "<1.0.16|>=4.6,<4.6.14",
+ "ibexa/solr": ">=4.5,<4.5.4",
+ "ibexa/user": ">=4,<4.4.3|>=5,<5.0.4",
+ "icecoder/icecoder": "<=8.1",
+ "idno/known": "<=1.3.1",
+ "ilicmiljan/secure-props": ">=1.2,<1.2.2",
+ "illuminate/auth": "<5.5.10",
+ "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<6.18.31|>=7,<7.22.4",
+ "illuminate/database": "<6.20.26|>=7,<7.30.5|>=8,<8.40",
+ "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
+ "illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
+ "imdbphp/imdbphp": "<=5.1.1",
+ "impresscms/impresscms": "<=1.4.5",
+ "impresspages/impresspages": "<1.0.13",
+ "in2code/femanager": "<6.4.2|>=7,<7.5.3|>=8,<8.3.1",
+ "in2code/ipandlanguageredirect": "<5.1.2",
+ "in2code/lux": "<17.6.1|>=18,<24.0.2",
+ "in2code/powermail": "<7.5.1|>=8,<8.5.1|>=9,<10.9.1|>=11,<12.5.3|==13",
+ "innologi/typo3-appointments": "<2.0.6",
+ "intelliants/subrion": "<4.2.2",
+ "inter-mediator/inter-mediator": "==5.5",
+ "ipl/web": "<0.10.1",
+ "islandora/crayfish": "<4.1",
+ "islandora/islandora": ">=2,<2.4.1",
+ "ivankristianto/phpwhois": "<=4.3",
+ "jackalope/jackalope-doctrine-dbal": "<1.7.4",
+ "jambagecom/div2007": "<0.10.2",
+ "james-heinrich/getid3": "<1.9.21",
+ "james-heinrich/phpthumb": "<=1.7.23",
+ "jasig/phpcas": "<1.3.3",
+ "jbartels/wec-map": "<3.0.3",
+ "jcbrand/converse.js": "<3.3.3",
+ "joelbutcher/socialstream": "<5.6|>=6,<6.2",
+ "johnbillion/wp-crontrol": "<1.16.2|>=1.17,<1.19.2",
+ "joomla/application": "<1.0.13",
+ "joomla/archive": "<1.1.12|>=2,<2.0.1",
+ "joomla/database": ">=1,<2.2|>=3,<3.4",
+ "joomla/filesystem": "<1.6.2|>=2,<2.0.1",
+ "joomla/filter": "<2.0.6|>=3,<3.0.5|==4",
+ "joomla/framework": "<1.5.7|>=2.5.4,<=3.8.12",
+ "joomla/input": ">=2,<2.0.2",
+ "joomla/joomla-cms": "<3.9.12|>=4,<4.4.13|>=5,<5.2.6",
+ "joomla/joomla-platform": "<1.5.4",
+ "joomla/session": "<1.3.1",
+ "joyqi/hyper-down": "<=2.4.27",
+ "jsdecena/laracom": "<2.0.9",
+ "jsmitty12/phpwhois": "<5.1",
+ "juzaweb/cms": "<=3.4.2",
+ "jweiland/events2": "<8.3.8|>=9,<9.0.6",
+ "jweiland/kk-downloader": "<1.2.2",
+ "kazist/phpwhois": "<=4.2.6",
+ "kelvinmo/simplexrd": "<3.1.1",
+ "kevinpapst/kimai2": "<1.16.7",
+ "khodakhah/nodcms": "<=3",
+ "kimai/kimai": "<=2.20.1",
+ "kitodo/presentation": "<3.2.3|>=3.3,<3.3.4",
+ "klaviyo/magento2-extension": ">=1,<3",
+ "knplabs/knp-snappy": "<=1.4.2",
+ "kohana/core": "<3.3.3",
+ "koillection/koillection": "<1.6.12",
+ "krayin/laravel-crm": "<=1.3",
+ "kreait/firebase-php": ">=3.2,<3.8.1",
+ "kumbiaphp/kumbiapp": "<=1.1.1",
+ "la-haute-societe/tcpdf": "<6.2.22",
+ "laminas/laminas-diactoros": "<2.18.1|==2.19|==2.20|==2.21|==2.22|==2.23|>=2.24,<2.24.2|>=2.25,<2.25.2",
+ "laminas/laminas-form": "<2.17.1|>=3,<3.0.2|>=3.1,<3.1.1",
+ "laminas/laminas-http": "<2.14.2",
+ "lara-zeus/artemis": ">=1,<=1.0.6",
+ "lara-zeus/dynamic-dashboard": ">=3,<=3.0.1",
+ "laravel/fortify": "<1.11.1",
+ "laravel/framework": "<10.48.29|>=11,<11.44.1|>=12,<12.1.1",
+ "laravel/laravel": ">=5.4,<5.4.22",
+ "laravel/pulse": "<1.3.1",
+ "laravel/reverb": "<1.4",
+ "laravel/socialite": ">=1,<2.0.10",
+ "latte/latte": "<2.10.8",
+ "lavalite/cms": "<=9|==10.1",
+ "lavitto/typo3-form-to-database": "<2.2.5|>=3,<3.2.2|>=4,<4.2.3|>=5,<5.0.2",
+ "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5",
+ "league/commonmark": "<2.7",
+ "league/flysystem": "<1.1.4|>=2,<2.1.1",
+ "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3",
+ "leantime/leantime": "<3.3",
+ "lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
+ "libreform/libreform": ">=2,<=2.0.8",
+ "librenms/librenms": "<25.12",
+ "liftkit/database": "<2.13.2",
+ "lightsaml/lightsaml": "<1.3.5",
+ "limesurvey/limesurvey": "<6.5.12",
+ "livehelperchat/livehelperchat": "<=3.91",
+ "livewire/livewire": "<2.12.7|>=3.0.0.0-beta1,<3.6.4",
+ "livewire/volt": "<1.7",
+ "lms/routes": "<2.1.1",
+ "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
+ "lomkit/laravel-rest-api": "<2.13",
+ "luracast/restler": "<3.1",
+ "luyadev/yii-helpers": "<1.2.1",
+ "macropay-solutions/laravel-crud-wizard-free": "<3.4.17",
+ "maestroerror/php-heic-to-jpg": "<1.0.5",
+ "magento/community-edition": "<2.4.6.0-patch13|>=2.4.7.0-beta1,<2.4.7.0-patch8|>=2.4.8.0-beta1,<2.4.8.0-patch3|>=2.4.9.0-alpha1,<2.4.9.0-alpha3|==2.4.9",
+ "magento/core": "<=1.9.4.5",
+ "magento/magento1ce": "<1.9.4.3-dev",
+ "magento/magento1ee": ">=1,<1.14.4.3-dev",
+ "magento/product-community-edition": "<2.4.4.0-patch9|>=2.4.5,<2.4.5.0-patch8|>=2.4.6,<2.4.6.0-patch6|>=2.4.7,<2.4.7.0-patch1",
+ "magento/project-community-edition": "<=2.0.2",
+ "magneto/core": "<1.9.4.4-dev",
+ "mahocommerce/maho": "<25.9",
+ "maikuolan/phpmussel": ">=1,<1.6",
+ "mainwp/mainwp": "<=4.4.3.3",
+ "manogi/nova-tiptap": "<=3.2.6",
+ "mantisbt/mantisbt": "<2.27.2",
+ "marcwillmann/turn": "<0.3.3",
+ "marshmallow/nova-tiptap": "<5.7",
+ "matomo/matomo": "<1.11",
+ "matyhtf/framework": "<3.0.6",
+ "mautic/core": "<5.2.9|>=6,<6.0.7",
+ "mautic/core-lib": ">=1.0.0.0-beta,<4.4.13|>=5.0.0.0-alpha,<5.1.1",
+ "mautic/grapes-js-builder-bundle": ">=4,<4.4.18|>=5,<5.2.9|>=6,<6.0.7",
+ "maximebf/debugbar": "<1.19",
+ "mdanter/ecc": "<2",
+ "mediawiki/abuse-filter": "<1.39.9|>=1.40,<1.41.3|>=1.42,<1.42.2",
+ "mediawiki/cargo": "<3.8.3",
+ "mediawiki/core": "<1.39.5|==1.40",
+ "mediawiki/data-transfer": ">=1.39,<1.39.11|>=1.41,<1.41.3|>=1.42,<1.42.2",
+ "mediawiki/matomo": "<2.4.3",
+ "mediawiki/semantic-media-wiki": "<4.0.2",
+ "mehrwert/phpmyadmin": "<3.2",
+ "melisplatform/melis-asset-manager": "<5.0.1",
+ "melisplatform/melis-cms": "<5.3.4",
+ "melisplatform/melis-cms-slider": "<5.3.1",
+ "melisplatform/melis-core": "<5.3.11",
+ "melisplatform/melis-front": "<5.0.1",
+ "mezzio/mezzio-swoole": "<3.7|>=4,<4.3",
+ "mgallegos/laravel-jqgrid": "<=1.3",
+ "microsoft/microsoft-graph": ">=1.16,<1.109.1|>=2,<2.0.1",
+ "microsoft/microsoft-graph-beta": "<2.0.1",
+ "microsoft/microsoft-graph-core": "<2.0.2",
+ "microweber/microweber": "<=2.0.19",
+ "mikehaertl/php-shellcommand": "<1.6.1",
+ "mineadmin/mineadmin": "<=3.0.9",
+ "miniorange/miniorange-saml": "<1.4.3",
+ "mittwald/typo3_forum": "<1.2.1",
+ "mobiledetect/mobiledetectlib": "<2.8.32",
+ "modx/revolution": "<=3.1",
+ "mojo42/jirafeau": "<4.4",
+ "mongodb/mongodb": ">=1,<1.9.2",
+ "mongodb/mongodb-extension": "<1.21.2",
+ "monolog/monolog": ">=1.8,<1.12",
+ "moodle/moodle": "<4.4.11|>=4.5.0.0-beta,<4.5.7|>=5.0.0.0-beta,<5.0.3",
+ "moonshine/moonshine": "<=3.12.5",
+ "mos/cimage": "<0.7.19",
+ "movim/moxl": ">=0.8,<=0.10",
+ "movingbytes/social-network": "<=1.2.1",
+ "mpdf/mpdf": "<=7.1.7",
+ "munkireport/comment": "<4",
+ "munkireport/managedinstalls": "<2.6",
+ "munkireport/munki_facts": "<1.5",
+ "munkireport/reportdata": "<3.5",
+ "munkireport/softwareupdate": "<1.6",
+ "mustache/mustache": ">=2,<2.14.1",
+ "mwdelaney/wp-enable-svg": "<=0.2",
+ "namshi/jose": "<2.2",
+ "nasirkhan/laravel-starter": "<11.11",
+ "nategood/httpful": "<1",
+ "neoan3-apps/template": "<1.1.1",
+ "neorazorx/facturascripts": "<2022.04",
+ "neos/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
+ "neos/form": ">=1.2,<4.3.3|>=5,<5.0.9|>=5.1,<5.1.3",
+ "neos/media-browser": "<7.3.19|>=8,<8.0.16|>=8.1,<8.1.11|>=8.2,<8.2.11|>=8.3,<8.3.9",
+ "neos/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<5.3.10|>=7,<7.0.9|>=7.1,<7.1.7|>=7.2,<7.2.6|>=7.3,<7.3.4|>=8,<8.0.2",
+ "neos/swiftmailer": "<5.4.5",
+ "nesbot/carbon": "<2.72.6|>=3,<3.8.4",
+ "netcarver/textile": "<=4.1.2",
+ "netgen/tagsbundle": ">=3.4,<3.4.11|>=4,<4.0.15",
+ "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6",
+ "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13",
+ "neuron-core/neuron-ai": "<=2.8.11",
+ "nilsteampassnet/teampass": "<3.1.3.1-dev",
+ "nitsan/ns-backup": "<13.0.1",
+ "nonfiction/nterchange": "<4.1.1",
+ "notrinos/notrinos-erp": "<=0.7",
+ "noumo/easyii": "<=0.9",
+ "novaksolutions/infusionsoft-php-sdk": "<1",
+ "novosga/novosga": "<=2.2.12",
+ "nukeviet/nukeviet": "<4.5.02",
+ "nyholm/psr7": "<1.6.1",
+ "nystudio107/craft-seomatic": "<3.4.12",
+ "nzedb/nzedb": "<0.8",
+ "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1",
+ "october/backend": "<1.1.2",
+ "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1",
+ "october/october": "<3.7.5",
+ "october/rain": "<1.0.472|>=1.1,<1.1.2",
+ "october/system": "<3.7.5",
+ "oliverklee/phpunit": "<3.5.15",
+ "omeka/omeka-s": "<4.0.3",
+ "onelogin/php-saml": "<2.21.1|>=3,<3.8.1|>=4,<4.3.1",
+ "oneup/uploader-bundle": ">=1,<1.9.3|>=2,<2.1.5",
+ "open-web-analytics/open-web-analytics": "<1.8.1",
+ "opencart/opencart": ">=0",
+ "openid/php-openid": "<2.3",
+ "openmage/magento-lts": "<20.16",
+ "opensolutions/vimbadmin": "<=3.0.15",
+ "opensource-workshop/connect-cms": "<1.8.7|>=2,<2.4.7",
+ "orchid/platform": ">=8,<14.43",
+ "oro/calendar-bundle": ">=4.2,<=4.2.6|>=5,<=5.0.6|>=5.1,<5.1.1",
+ "oro/commerce": ">=4.1,<5.0.11|>=5.1,<5.1.1",
+ "oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
+ "oro/crm-call-bundle": ">=4.2,<=4.2.5|>=5,<5.0.4|>=5.1,<5.1.1",
+ "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3",
+ "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3",
+ "oveleon/contao-cookiebar": "<1.16.3|>=2,<2.1.3",
+ "oxid-esales/oxideshop-ce": "<=7.0.5",
+ "oxid-esales/paymorrow-module": ">=1,<1.0.2|>=2,<2.0.1",
+ "packbackbooks/lti-1-3-php-library": "<5",
+ "padraic/humbug_get_contents": "<1.1.2",
+ "pagarme/pagarme-php": "<3",
+ "pagekit/pagekit": "<=1.0.18",
+ "paragonie/ecc": "<2.0.1",
+ "paragonie/random_compat": "<2",
+ "paragonie/sodium_compat": "<1.24|>=2,<2.5",
+ "passbolt/passbolt_api": "<4.6.2",
+ "paypal/adaptivepayments-sdk-php": "<=3.9.2",
+ "paypal/invoice-sdk-php": "<=3.9",
+ "paypal/merchant-sdk-php": "<3.12",
+ "paypal/permissions-sdk-php": "<=3.9.1",
+ "pear/archive_tar": "<1.4.14",
+ "pear/auth": "<1.2.4",
+ "pear/crypt_gpg": "<1.6.7",
+ "pear/http_request2": "<2.7",
+ "pear/pear": "<=1.10.1",
+ "pegasus/google-for-jobs": "<1.5.1|>=2,<2.1.1",
+ "personnummer/personnummer": "<3.0.2",
+ "phanan/koel": "<5.1.4",
+ "phenx/php-svg-lib": "<0.5.2",
+ "php-censor/php-censor": "<2.0.13|>=2.1,<2.1.5",
+ "php-mod/curl": "<2.3.2",
+ "phpbb/phpbb": "<3.3.11",
+ "phpems/phpems": ">=6,<=6.1.3",
+ "phpfastcache/phpfastcache": "<6.1.5|>=7,<7.1.2|>=8,<8.0.7",
+ "phpmailer/phpmailer": "<6.5",
+ "phpmussel/phpmussel": ">=1,<1.6",
+ "phpmyadmin/phpmyadmin": "<5.2.2",
+ "phpmyfaq/phpmyfaq": "<=4.0.13",
+ "phpoffice/common": "<0.2.9",
+ "phpoffice/math": "<=0.2",
+ "phpoffice/phpexcel": "<=1.8.2",
+ "phpoffice/phpspreadsheet": "<1.30|>=2,<2.1.12|>=2.2,<2.4|>=3,<3.10|>=4,<5",
+ "phppgadmin/phppgadmin": "<=7.13",
+ "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36",
+ "phpservermon/phpservermon": "<3.6",
+ "phpsysinfo/phpsysinfo": "<3.4.3",
+ "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3",
+ "phpwhois/phpwhois": "<=4.2.5",
+ "phpxmlrpc/extras": "<0.6.1",
+ "phpxmlrpc/phpxmlrpc": "<4.9.2",
+ "pi/pi": "<=2.5",
+ "pimcore/admin-ui-classic-bundle": "<1.7.6",
+ "pimcore/customer-management-framework-bundle": "<4.2.1",
+ "pimcore/data-hub": "<1.2.4",
+ "pimcore/data-importer": "<1.8.9|>=1.9,<1.9.3",
+ "pimcore/demo": "<10.3",
+ "pimcore/ecommerce-framework-bundle": "<1.0.10",
+ "pimcore/perspective-editor": "<1.5.1",
+ "pimcore/pimcore": "<11.5.4",
+ "piwik/piwik": "<1.11",
+ "pixelfed/pixelfed": "<0.12.5",
+ "plotly/plotly.js": "<2.25.2",
+ "pocketmine/bedrock-protocol": "<8.0.2",
+ "pocketmine/pocketmine-mp": "<5.32.1",
+ "pocketmine/raklib": ">=0.14,<0.14.6|>=0.15,<0.15.1",
+ "pressbooks/pressbooks": "<5.18",
+ "prestashop/autoupgrade": ">=4,<4.10.1",
+ "prestashop/blockreassurance": "<=5.1.3",
+ "prestashop/blockwishlist": ">=2,<2.1.1",
+ "prestashop/contactform": ">=1.0.1,<4.3",
+ "prestashop/gamification": "<2.3.2",
+ "prestashop/prestashop": "<8.2.3",
+ "prestashop/productcomments": "<5.0.2",
+ "prestashop/ps_checkout": "<4.4.1|>=5,<5.0.5",
+ "prestashop/ps_contactinfo": "<=3.3.2",
+ "prestashop/ps_emailsubscription": "<2.6.1",
+ "prestashop/ps_facetedsearch": "<3.4.1",
+ "prestashop/ps_linklist": "<3.1",
+ "privatebin/privatebin": "<1.4|>=1.5,<1.7.4|>=1.7.7,<2.0.3",
+ "processwire/processwire": "<=3.0.246",
+ "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7",
+ "propel/propel1": ">=1,<=1.7.1",
+ "pterodactyl/panel": "<1.12",
+ "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2",
+ "ptrofimov/beanstalk_console": "<1.7.14",
+ "pubnub/pubnub": "<6.1",
+ "punktde/pt_extbase": "<1.5.1",
+ "pusher/pusher-php-server": "<2.2.1",
+ "pwweb/laravel-core": "<=0.3.6.0-beta",
+ "pxlrbt/filament-excel": "<1.1.14|>=2.0.0.0-alpha,<2.3.3",
+ "pyrocms/pyrocms": "<=3.9.1",
+ "qcubed/qcubed": "<=3.1.1",
+ "quickapps/cms": "<=2.0.0.0-beta2",
+ "rainlab/blog-plugin": "<1.4.1",
+ "rainlab/debugbar-plugin": "<3.1",
+ "rainlab/user-plugin": "<=1.4.5",
+ "rankmath/seo-by-rank-math": "<=1.0.95",
+ "rap2hpoutre/laravel-log-viewer": "<0.13",
+ "react/http": ">=0.7,<1.9",
+ "really-simple-plugins/complianz-gdpr": "<6.4.2",
+ "redaxo/source": "<=5.20.1",
+ "remdex/livehelperchat": "<4.29",
+ "renolit/reint-downloadmanager": "<4.0.2|>=5,<5.0.1",
+ "reportico-web/reportico": "<=8.1",
+ "rhukster/dom-sanitizer": "<1.0.7",
+ "rmccue/requests": ">=1.6,<1.8",
+ "robrichards/xmlseclibs": "<=3.1.3",
+ "roots/soil": "<4.1",
+ "roundcube/roundcubemail": "<1.5.10|>=1.6,<1.6.11",
+ "rudloff/alltube": "<3.0.3",
+ "rudloff/rtmpdump-bin": "<=2.3.1",
+ "s-cart/core": "<=9.0.5",
+ "s-cart/s-cart": "<6.9",
+ "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1",
+ "sabre/dav": ">=1.6,<1.7.11|>=1.8,<1.8.9",
+ "samwilson/unlinked-wikibase": "<1.42",
+ "scheb/two-factor-bundle": "<3.26|>=4,<4.11",
+ "sensiolabs/connect": "<4.2.3",
+ "serluck/phpwhois": "<=4.2.6",
+ "setasign/fpdi": "<2.6.4",
+ "sfroemken/url_redirect": "<=1.2.1",
+ "sheng/yiicms": "<1.2.1",
+ "shopware/core": "<6.6.10.9-dev|>=6.7,<6.7.4.1-dev",
+ "shopware/platform": "<6.6.10.7-dev|>=6.7,<6.7.3.1-dev",
+ "shopware/production": "<=6.3.5.2",
+ "shopware/shopware": "<=5.7.17|>=6.4.6,<6.6.10.10-dev|>=6.7,<6.7.5.1-dev",
+ "shopware/storefront": "<6.6.10.10-dev|>=6.7,<6.7.5.1-dev",
+ "shopxo/shopxo": "<=6.4",
+ "showdoc/showdoc": "<2.10.4",
+ "shuchkin/simplexlsx": ">=1.0.12,<1.1.13",
+ "silverstripe-australia/advancedreports": ">=1,<=2",
+ "silverstripe/admin": "<1.13.19|>=2,<2.1.8",
+ "silverstripe/assets": ">=1,<1.11.1",
+ "silverstripe/cms": "<4.11.3",
+ "silverstripe/comments": ">=1.3,<3.1.1",
+ "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
+ "silverstripe/framework": "<5.3.23",
+ "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.8.2|>=4,<4.3.7|>=5,<5.1.3",
+ "silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
+ "silverstripe/recipe-cms": ">=4.5,<4.5.3",
+ "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
+ "silverstripe/reports": "<5.2.3",
+ "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4|>=2.1,<2.1.2",
+ "silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
+ "silverstripe/subsites": ">=2,<2.6.1",
+ "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
+ "silverstripe/userforms": "<3|>=5,<5.4.2",
+ "silverstripe/versioned-admin": ">=1,<1.11.1",
+ "simogeo/filemanager": "<=2.5",
+ "simple-updates/phpwhois": "<=1",
+ "simplesamlphp/saml2": "<=4.16.15|>=5.0.0.0-alpha1,<=5.0.0.0-alpha19",
+ "simplesamlphp/saml2-legacy": "<=4.16.15",
+ "simplesamlphp/simplesamlphp": "<1.18.6",
+ "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1",
+ "simplesamlphp/simplesamlphp-module-openid": "<1",
+ "simplesamlphp/simplesamlphp-module-openidprovider": "<0.9",
+ "simplesamlphp/xml-common": "<1.20",
+ "simplesamlphp/xml-security": "==1.6.11",
+ "simplito/elliptic-php": "<1.0.6",
+ "sitegeist/fluid-components": "<3.5",
+ "sjbr/sr-feuser-register": "<2.6.2|>=5.1,<12.5",
+ "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3",
+ "sjbr/static-info-tables": "<2.3.1",
+ "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1",
+ "slim/slim": "<2.6",
+ "slub/slub-events": "<3.0.3",
+ "smarty/smarty": "<4.5.3|>=5,<5.1.1",
+ "snipe/snipe-it": "<=8.3.4",
+ "socalnick/scn-social-auth": "<1.15.2",
+ "socialiteproviders/steam": "<1.1",
+ "solspace/craft-freeform": ">=5,<5.10.16",
+ "soosyze/soosyze": "<=2",
+ "spatie/browsershot": "<5.0.5",
+ "spatie/image-optimizer": "<1.7.3",
+ "spencer14420/sp-php-email-handler": "<1",
+ "spipu/html2pdf": "<5.2.8",
+ "spiral/roadrunner": "<2025.1",
+ "spoon/library": "<1.4.1",
+ "spoonity/tcpdf": "<6.2.22",
+ "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
+ "ssddanbrown/bookstack": "<24.05.1",
+ "starcitizentools/citizen-skin": ">=1.9.4,<3.9",
+ "starcitizentools/short-description": ">=4,<4.0.1",
+ "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2|>=3,<3.1.1",
+ "starcitizenwiki/embedvideo": "<=4",
+ "statamic/cms": "<=5.22",
+ "stormpath/sdk": "<9.9.99",
+ "studio-42/elfinder": "<=2.1.64",
+ "studiomitte/friendlycaptcha": "<0.1.4",
+ "subhh/libconnect": "<7.0.8|>=8,<8.1",
+ "sukohi/surpass": "<1",
+ "sulu/form-bundle": ">=2,<2.5.3",
+ "sulu/sulu": "<1.6.44|>=2,<2.5.25|>=2.6,<2.6.9|>=3.0.0.0-alpha1,<3.0.0.0-alpha3",
+ "sumocoders/framework-user-bundle": "<1.4",
+ "superbig/craft-audit": "<3.0.2",
+ "svewap/a21glossary": "<=0.4.10",
+ "swag/paypal": "<5.4.4",
+ "swiftmailer/swiftmailer": "<6.2.5",
+ "swiftyedit/swiftyedit": "<1.2",
+ "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2",
+ "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1",
+ "sylius/grid-bundle": "<1.10.1",
+ "sylius/paypal-plugin": "<1.6.2|>=1.7,<1.7.2|>=2,<2.0.2",
+ "sylius/resource-bundle": ">=1,<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4",
+ "sylius/sylius": "<1.12.19|>=1.13.0.0-alpha1,<1.13.4",
+ "symbiote/silverstripe-multivaluefield": ">=3,<3.1",
+ "symbiote/silverstripe-queuedjobs": ">=3,<3.0.2|>=3.1,<3.1.4|>=4,<4.0.7|>=4.1,<4.1.2|>=4.2,<4.2.4|>=4.3,<4.3.3|>=4.4,<4.4.3|>=4.5,<4.5.1|>=4.6,<4.6.4",
+ "symbiote/silverstripe-seed": "<6.0.3",
+ "symbiote/silverstripe-versionedfiles": "<=2.0.3",
+ "symfont/process": ">=0",
+ "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8",
+ "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
+ "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4",
+ "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1",
+ "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=5.3.14,<5.3.15|>=5.4.3,<5.4.4|>=6.0.3,<6.0.4",
+ "symfony/http-client": ">=4.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
+ "symfony/http-foundation": "<5.4.50|>=6,<6.4.29|>=7,<7.3.7",
+ "symfony/http-kernel": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.2.6",
+ "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13",
+ "symfony/maker-bundle": ">=1.27,<1.29.2|>=1.30,<1.31.1",
+ "symfony/mime": ">=4.3,<4.3.8",
+ "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
+ "symfony/polyfill": ">=1,<1.10",
+ "symfony/polyfill-php55": ">=1,<1.10",
+ "symfony/process": "<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
+ "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7",
+ "symfony/routing": ">=2,<2.0.19",
+ "symfony/runtime": ">=5.3,<5.4.46|>=6,<6.4.14|>=7,<7.1.7",
+ "symfony/security": ">=2,<2.7.51|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.8",
+ "symfony/security-bundle": ">=2,<4.4.50|>=5,<5.4.20|>=6,<6.0.20|>=6.1,<6.1.12|>=6.2,<6.4.10|>=7,<7.0.10|>=7.1,<7.1.3",
+ "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<3.4.49|>=4,<4.4.24|>=5,<5.2.9",
+ "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11",
+ "symfony/security-guard": ">=2.8,<3.4.48|>=4,<4.4.23|>=5,<5.2.8",
+ "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7|>=5.1,<5.2.8|>=5.3,<5.4.47|>=6,<6.4.15|>=7,<7.1.8",
+ "symfony/serializer": ">=2,<2.0.11|>=4.1,<4.4.35|>=5,<5.3.12",
+ "symfony/symfony": "<5.4.50|>=6,<6.4.29|>=7,<7.3.7",
+ "symfony/translation": ">=2,<2.0.17",
+ "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8",
+ "symfony/ux-autocomplete": "<2.11.2",
+ "symfony/ux-live-component": "<2.25.1",
+ "symfony/ux-twig-component": "<2.25.1",
+ "symfony/validator": "<5.4.43|>=6,<6.4.11|>=7,<7.1.4",
+ "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8",
+ "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4",
+ "symfony/webhook": ">=6.3,<6.3.8",
+ "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7|>=2.2.0.0-beta1,<2.2.0.0-beta2",
+ "symphonycms/symphony-2": "<2.6.4",
+ "t3/dce": "<0.11.5|>=2.2,<2.6.2",
+ "t3g/svg-sanitizer": "<1.0.3",
+ "t3s/content-consent": "<1.0.3|>=2,<2.0.2",
+ "tastyigniter/tastyigniter": "<4",
+ "tcg/voyager": "<=1.8",
+ "tecnickcom/tc-lib-pdf-font": "<2.6.4",
+ "tecnickcom/tcpdf": "<6.8",
+ "terminal42/contao-tablelookupwizard": "<3.3.5",
+ "thelia/backoffice-default-template": ">=2.1,<2.1.2",
+ "thelia/thelia": ">=2.1,<2.1.3",
+ "theonedemon/phpwhois": "<=4.2.5",
+ "thinkcmf/thinkcmf": "<6.0.8",
+ "thorsten/phpmyfaq": "<4.0.16|>=4.1.0.0-alpha,<=4.1.0.0-beta2",
+ "tikiwiki/tiki-manager": "<=17.1",
+ "timber/timber": ">=0.16.6,<1.23.1|>=1.24,<1.24.1|>=2,<2.1",
+ "tinymce/tinymce": "<7.2",
+ "tinymighty/wiki-seo": "<1.2.2",
+ "titon/framework": "<9.9.99",
+ "tltneon/lgsl": "<7",
+ "tobiasbg/tablepress": "<=2.0.0.0-RC1",
+ "topthink/framework": "<6.0.17|>=6.1,<=8.0.4",
+ "topthink/think": "<=6.1.1",
+ "topthink/thinkphp": "<=3.2.3|>=6.1.3,<=8.0.4",
+ "torrentpier/torrentpier": "<=2.8.8",
+ "tpwd/ke_search": "<4.0.3|>=4.1,<4.6.6|>=5,<5.0.2",
+ "tribalsystems/zenario": "<=9.7.61188",
+ "truckersmp/phpwhois": "<=4.3.1",
+ "ttskch/pagination-service-provider": "<1",
+ "twbs/bootstrap": "<3.4.1|>=4,<4.3.1",
+ "twig/twig": "<3.11.2|>=3.12,<3.14.1|>=3.16,<3.19",
+ "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
+ "typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
+ "typo3/cms-belog": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
+ "typo3/cms-beuser": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
+ "typo3/cms-core": "<=8.7.56|>=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
+ "typo3/cms-dashboard": ">=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
+ "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
+ "typo3/cms-extensionmanager": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
+ "typo3/cms-felogin": ">=4.2,<4.2.3",
+ "typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1",
+ "typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
+ "typo3/cms-frontend": "<4.3.9|>=4.4,<4.4.5",
+ "typo3/cms-indexed-search": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2",
+ "typo3/cms-install": "<4.1.14|>=4.2,<4.2.16|>=4.3,<4.3.9|>=4.4,<4.4.5|>=12.2,<12.4.8|==13.4.2",
+ "typo3/cms-lowlevel": ">=11,<=11.5.41",
+ "typo3/cms-recordlist": ">=11,<11.5.48",
+ "typo3/cms-recycler": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
+ "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30",
+ "typo3/cms-scheduler": ">=11,<=11.5.41",
+ "typo3/cms-setup": ">=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11",
+ "typo3/cms-webhooks": ">=12,<=12.4.30|>=13,<=13.4.11",
+ "typo3/cms-workspaces": ">=9,<9.5.55|>=10,<10.4.54|>=11,<11.5.48|>=12,<12.4.37|>=13,<13.4.18",
+ "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
+ "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3",
+ "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
+ "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
+ "typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
+ "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10",
+ "ua-parser/uap-php": "<3.8",
+ "uasoft-indonesia/badaso": "<=2.9.7",
+ "unisharp/laravel-filemanager": "<2.9.1",
+ "universal-omega/dynamic-page-list3": "<3.6.4",
+ "unopim/unopim": "<=0.3",
+ "userfrosting/userfrosting": ">=0.3.1,<4.6.3",
+ "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2",
+ "uvdesk/community-skeleton": "<=1.1.1",
+ "uvdesk/core-framework": "<=1.1.1",
+ "vanilla/safecurl": "<0.9.2",
+ "verbb/comments": "<1.5.5",
+ "verbb/formie": "<=2.1.43",
+ "verbb/image-resizer": "<2.0.9",
+ "verbb/knock-knock": "<1.2.8",
+ "verot/class.upload.php": "<=2.1.6",
+ "vertexvaar/falsftp": "<0.2.6",
+ "villagedefrance/opencart-overclocked": "<=1.11.1",
+ "vova07/yii2-fileapi-widget": "<0.1.9",
+ "vrana/adminer": "<=4.8.1",
+ "vufind/vufind": ">=2,<9.1.1",
+ "waldhacker/hcaptcha": "<2.1.2",
+ "wallabag/tcpdf": "<6.2.22",
+ "wallabag/wallabag": "<2.6.11",
+ "wanglelecc/laracms": "<=1.0.3",
+ "wapplersystems/a21glossary": "<=0.4.10",
+ "web-auth/webauthn-framework": ">=3.3,<3.3.4|>=4.5,<4.9",
+ "web-auth/webauthn-lib": ">=4.5,<4.9",
+ "web-feet/coastercms": "==5.5",
+ "web-tp3/wec_map": "<3.0.3",
+ "webbuilders-group/silverstripe-kapost-bridge": "<0.4",
+ "webcoast/deferred-image-processing": "<1.0.2",
+ "webklex/laravel-imap": "<5.3",
+ "webklex/php-imap": "<5.3",
+ "webpa/webpa": "<3.1.2",
+ "webreinvent/vaahcms": "<=2.3.1",
+ "wikibase/wikibase": "<=1.39.3",
+ "wikimedia/parsoid": "<0.12.2",
+ "willdurand/js-translation-bundle": "<2.1.1",
+ "winter/wn-backend-module": "<1.2.4",
+ "winter/wn-cms-module": "<1.0.476|>=1.1,<1.1.11|>=1.2,<1.2.7",
+ "winter/wn-dusk-plugin": "<2.1",
+ "winter/wn-system-module": "<1.2.4",
+ "wintercms/winter": "<=1.2.3",
+ "wireui/wireui": "<1.19.3|>=2,<2.1.3",
+ "woocommerce/woocommerce": "<6.6|>=8.8,<8.8.5|>=8.9,<8.9.3",
+ "wp-cli/wp-cli": ">=0.12,<2.5",
+ "wp-graphql/wp-graphql": "<=1.14.5",
+ "wp-premium/gravityforms": "<2.4.21",
+ "wpanel/wpanel4-cms": "<=4.3.1",
+ "wpcloud/wp-stateless": "<3.2",
+ "wpglobus/wpglobus": "<=1.9.6",
+ "wwbn/avideo": "<14.3",
+ "xataface/xataface": "<3",
+ "xpressengine/xpressengine": "<3.0.15",
+ "yab/quarx": "<2.4.5",
+ "yeswiki/yeswiki": "<=4.5.4",
+ "yetiforce/yetiforce-crm": "<6.5",
+ "yidashi/yii2cmf": "<=2",
+ "yii2mod/yii2-cms": "<1.9.2",
+ "yiisoft/yii": "<1.1.31",
+ "yiisoft/yii2": "<2.0.52",
+ "yiisoft/yii2-authclient": "<2.2.15",
+ "yiisoft/yii2-bootstrap": "<2.0.4",
+ "yiisoft/yii2-dev": "<=2.0.45",
+ "yiisoft/yii2-elasticsearch": "<2.0.5",
+ "yiisoft/yii2-gii": "<=2.2.4",
+ "yiisoft/yii2-jui": "<2.0.4",
+ "yiisoft/yii2-redis": "<2.0.20",
+ "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
+ "yoast-seo-for-typo3/yoast_seo": "<7.2.3",
+ "yourls/yourls": "<=1.10.2",
+ "yuan1994/tpadmin": "<=1.3.12",
+ "yungifez/skuul": "<=2.6.5",
+ "z-push/z-push-dev": "<2.7.6",
+ "zencart/zencart": "<=1.5.7.0-beta",
+ "zendesk/zendesk_api_client_php": "<2.2.11",
+ "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3",
+ "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2",
+ "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2",
+ "zendframework/zend-db": "<2.2.10|>=2.3,<2.3.5",
+ "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3",
+ "zendframework/zend-diactoros": "<1.8.4",
+ "zendframework/zend-feed": "<2.10.3",
+ "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1",
+ "zendframework/zend-http": "<2.8.1",
+ "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6",
+ "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3",
+ "zendframework/zend-mail": "<2.4.11|>=2.5,<2.7.2",
+ "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1",
+ "zendframework/zend-session": ">=2,<2.2.9|>=2.3,<2.3.4",
+ "zendframework/zend-validator": ">=2.3,<2.3.6",
+ "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1",
+ "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6",
+ "zendframework/zendframework": "<=3",
+ "zendframework/zendframework1": "<1.12.20",
+ "zendframework/zendopenid": "<2.0.2",
+ "zendframework/zendrest": "<2.0.2",
+ "zendframework/zendservice-amazon": "<2.0.3",
+ "zendframework/zendservice-api": "<1",
+ "zendframework/zendservice-audioscrobbler": "<2.0.2",
+ "zendframework/zendservice-nirvanix": "<2.0.2",
+ "zendframework/zendservice-slideshare": "<2.0.2",
+ "zendframework/zendservice-technorati": "<2.0.2",
+ "zendframework/zendservice-windowsazure": "<2.0.2",
+ "zendframework/zendxml": ">=1,<1.0.1",
+ "zenstruck/collection": "<0.2.1",
+ "zetacomponents/mail": "<1.8.2",
+ "zf-commons/zfc-user": "<1.2.2",
+ "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3",
+ "zfr/zfr-oauth2-server-module": "<0.1.2",
+ "zoujingli/thinkadmin": "<=6.1.53"
},
+ "default-branch": true,
+ "type": "metapackage",
+ "notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0-or-later"
+ "MIT"
],
"authors": [
{
- "name": "Team Yoast",
- "email": "support@yoast.com",
- "homepage": "https://yoa.st/1--"
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "role": "maintainer"
+ },
+ {
+ "name": "Ilya Tribusean",
+ "email": "slash3b@gmail.com",
+ "role": "maintainer"
}
],
- "description": "Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.",
- "homepage": "https://yoa.st/1ui",
+ "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it",
"keywords": [
- "seo",
- "wordpress"
+ "dev"
],
"support": {
- "issues": "https://github.com/Yoast/wordpress-seo-premium/issues",
- "source": "https://github.com/Yoast/wordpress-seo-premium",
- "security": "https://yoast.com/security-program/"
+ "issues": "https://github.com/Roave/SecurityAdvisories/issues",
+ "source": "https://github.com/Roave/SecurityAdvisories/tree/latest"
},
- "time": "2025-09-23T09:01:22+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/Ocramius",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2026-01-05T20:06:42+00:00"
}
],
- "packages-dev": [],
"aliases": [],
- "minimum-stability": "stable",
+ "minimum-stability": "dev",
"stability-flags": {
- "fair/fair-plugin": 20,
- "humanmade/aws-ses-wp-mail": 20
+ "fairpm/fair-beacon": 20,
+ "fairpm/fair-plugin": 20,
+ "humanmade/aws-ses-wp-mail": 20,
+ "roave/security-advisories": 20
},
- "prefer-stable": false,
+ "prefer-stable": true,
"prefer-lowest": false,
- "platform": {},
+ "platform": {
+ "php": ">=8.4",
+ "ext-apcu": "*",
+ "ext-sqlite3": "*"
+ },
"platform-dev": {},
- "plugin-api-version": "2.6.0"
+ "plugin-api-version": "2.9.0"
}
diff --git a/config/application.php b/config/application.php
new file mode 100644
index 0000000..72cb449
--- /dev/null
+++ b/config/application.php
@@ -0,0 +1,180 @@
+addAdapter(Dotenv\Repository\Adapter\EnvConstAdapter::class)
+ ->addAdapter(Dotenv\Repository\Adapter\PutenvAdapter::class)
+ ->immutable()
+ ->make();
+
+ $dotenv = Dotenv\Dotenv::create($repository, $root_dir, $env_files, false);
+ $dotenv->load();
+
+ $dotenv->required(['WP_HOME', 'WP_SITEURL']);
+ if (!env('DATABASE_URL')) {
+ $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD']);
+ }
+}
+
+/**
+ * Set up our global environment constant and load its config first
+ * Default: production
+ */
+define('WP_ENV', env('WP_ENV') ?: 'production');
+
+/**
+ * Infer WP_ENVIRONMENT_TYPE based on WP_ENV
+ */
+if (!env('WP_ENVIRONMENT_TYPE') && in_array(WP_ENV, ['production', 'staging', 'development', 'local'])) {
+ Config::define('WP_ENVIRONMENT_TYPE', WP_ENV);
+}
+
+/**
+ * URLs
+ */
+Config::define('WP_HOME', env('WP_HOME'));
+Config::define('WP_SITEURL', env('WP_SITEURL'));
+
+/**
+ * Custom Content Directory
+ */
+Config::define('CONTENT_DIR', '/app');
+Config::define('WP_CONTENT_DIR', $webroot_dir . Config::get('CONTENT_DIR'));
+Config::define('WP_CONTENT_URL', Config::get('WP_HOME') . Config::get('CONTENT_DIR'));
+
+/**
+ * DB settings
+ */
+if (env('DB_SSL')) {
+ Config::define('MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL);
+}
+
+Config::define('DB_NAME', env('DB_NAME'));
+Config::define('DB_USER', env('DB_USER'));
+Config::define('DB_PASSWORD', env('DB_PASSWORD'));
+Config::define('DB_HOST', env('DB_HOST') ?: 'localhost');
+Config::define('DB_CHARSET', 'utf8mb4');
+Config::define('DB_COLLATE', '');
+$table_prefix = env('DB_PREFIX') ?: 'wp_';
+
+if (env('DATABASE_URL')) {
+ $dsn = (object) parse_url(env('DATABASE_URL'));
+
+ Config::define('DB_NAME', substr($dsn->path, 1));
+ Config::define('DB_USER', $dsn->user);
+ Config::define('DB_PASSWORD', isset($dsn->pass) ? $dsn->pass : null);
+ Config::define('DB_HOST', isset($dsn->port) ? "{$dsn->host}:{$dsn->port}" : $dsn->host);
+}
+
+/**
+ * Authentication Unique Keys and Salts
+ */
+Config::define('AUTH_KEY', env('AUTH_KEY'));
+Config::define('SECURE_AUTH_KEY', env('SECURE_AUTH_KEY'));
+Config::define('LOGGED_IN_KEY', env('LOGGED_IN_KEY'));
+Config::define('NONCE_KEY', env('NONCE_KEY'));
+Config::define('AUTH_SALT', env('AUTH_SALT'));
+Config::define('SECURE_AUTH_SALT', env('SECURE_AUTH_SALT'));
+Config::define('LOGGED_IN_SALT', env('LOGGED_IN_SALT'));
+Config::define('NONCE_SALT', env('NONCE_SALT'));
+
+/**
+ * Custom Settings
+ */
+Config::define('AUTOMATIC_UPDATER_DISABLED', true);
+Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false);
+
+// Disable the plugin and theme file editor in the admin
+Config::define('DISALLOW_FILE_EDIT', true);
+
+// Disable plugin and theme updates and installation from the admin
+Config::define('DISALLOW_FILE_MODS', true);
+
+// Limit the number of post revisions
+Config::define('WP_POST_REVISIONS', env('WP_POST_REVISIONS') ?? true);
+
+// Disable script concatenation
+Config::define('CONCATENATE_SCRIPTS', false);
+
+/**
+ * Debugging Settings
+ */
+Config::define('WP_DEBUG_DISPLAY', false);
+Config::define('WP_DEBUG_LOG', false);
+Config::define('SCRIPT_DEBUG', false);
+ini_set('display_errors', '0');
+
+/**
+ * Settings specific to fairpm/server
+ */
+// all sites are multisite by default. note that MULTISITE must not be true during install.
+if (!defined('WP_INITIAL_INSTALL') || !WP_INITIAL_INSTALL) {
+ Config::define('MULTISITE', true);
+}
+
+/**
+ * Allow WordPress to detect HTTPS when used behind a reverse proxy or a load balancer
+ * See https://codex.wordpress.org/Function_Reference/is_ssl#Notes
+ */
+if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
+ $_SERVER['HTTPS'] = 'on';
+}
+
+$env_config = __DIR__ . '/environments/' . WP_ENV . '.php';
+
+if (file_exists($env_config)) {
+ require_once $env_config;
+}
+
+Config::apply();
+
+/**
+ * Bootstrap WordPress
+ */
+if (!defined('ABSPATH')) {
+ define('ABSPATH', $webroot_dir . '/wp/');
+}
diff --git a/config/environments/development.php b/config/environments/development.php
new file mode 100644
index 0000000..94026ac
--- /dev/null
+++ b/config/environments/development.php
@@ -0,0 +1,22 @@
+get( 'Version' )
- );
- }
-endif;
-add_action( 'wp_enqueue_scripts', 'twentytwentyfive_enqueue_styles' );
-
-// Registers custom block styles.
-if ( ! function_exists( 'twentytwentyfive_block_styles' ) ) :
- /**
- * Registers custom block styles.
- *
- * @since Twenty Twenty-Five 1.0
- *
- * @return void
- */
- function twentytwentyfive_block_styles() {
- register_block_style(
- 'core/list',
- array(
- 'name' => 'checkmark-list',
- 'label' => __( 'Checkmark', 'twentytwentyfive' ),
- 'inline_style' => '
- ul.is-style-checkmark-list {
- list-style-type: "\2713";
- }
-
- ul.is-style-checkmark-list li {
- padding-inline-start: 1ch;
- }',
- )
- );
- }
-endif;
-add_action( 'init', 'twentytwentyfive_block_styles' );
-
-// Registers pattern categories.
-if ( ! function_exists( 'twentytwentyfive_pattern_categories' ) ) :
- /**
- * Registers pattern categories.
- *
- * @since Twenty Twenty-Five 1.0
- *
- * @return void
- */
- function twentytwentyfive_pattern_categories() {
-
- register_block_pattern_category(
- 'twentytwentyfive_page',
- array(
- 'label' => __( 'Pages', 'twentytwentyfive' ),
- 'description' => __( 'A collection of full page layouts.', 'twentytwentyfive' ),
- )
- );
-
- register_block_pattern_category(
- 'twentytwentyfive_post-format',
- array(
- 'label' => __( 'Post formats', 'twentytwentyfive' ),
- 'description' => __( 'A collection of post format patterns.', 'twentytwentyfive' ),
- )
- );
- }
-endif;
-add_action( 'init', 'twentytwentyfive_pattern_categories' );
-
-// Registers block binding sources.
-if ( ! function_exists( 'twentytwentyfive_register_block_bindings' ) ) :
- /**
- * Registers the post format block binding source.
- *
- * @since Twenty Twenty-Five 1.0
- *
- * @return void
- */
- function twentytwentyfive_register_block_bindings() {
- register_block_bindings_source(
- 'twentytwentyfive/format',
- array(
- 'label' => _x( 'Post format name', 'Label for the block binding placeholder in the editor', 'twentytwentyfive' ),
- 'get_value_callback' => 'twentytwentyfive_format_binding',
- )
- );
- }
-endif;
-add_action( 'init', 'twentytwentyfive_register_block_bindings' );
-
-// Registers block binding callback function for the post format name.
-if ( ! function_exists( 'twentytwentyfive_format_binding' ) ) :
- /**
- * Callback function for the post format name block binding source.
- *
- * @since Twenty Twenty-Five 1.0
- *
- * @return string|void Post format name, or nothing if the format is 'standard'.
- */
- function twentytwentyfive_format_binding() {
- $post_format_slug = get_post_format();
-
- if ( $post_format_slug && 'standard' !== $post_format_slug ) {
- return get_post_format_string( $post_format_slug );
- }
- }
-endif;
diff --git a/content/themes/twentytwentyfive/parts/footer-columns.html b/content/themes/twentytwentyfive/parts/footer-columns.html
deleted file mode 100644
index 00ca2ec..0000000
--- a/content/themes/twentytwentyfive/parts/footer-columns.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/parts/footer-newsletter.html b/content/themes/twentytwentyfive/parts/footer-newsletter.html
deleted file mode 100644
index 8e16988..0000000
--- a/content/themes/twentytwentyfive/parts/footer-newsletter.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/parts/footer.html b/content/themes/twentytwentyfive/parts/footer.html
deleted file mode 100644
index c2ea07c..0000000
--- a/content/themes/twentytwentyfive/parts/footer.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/parts/header-large-title.html b/content/themes/twentytwentyfive/parts/header-large-title.html
deleted file mode 100644
index 2c7ccf8..0000000
--- a/content/themes/twentytwentyfive/parts/header-large-title.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/parts/header.html b/content/themes/twentytwentyfive/parts/header.html
deleted file mode 100644
index 7e3e990..0000000
--- a/content/themes/twentytwentyfive/parts/header.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/parts/sidebar.html b/content/themes/twentytwentyfive/parts/sidebar.html
deleted file mode 100644
index a29f829..0000000
--- a/content/themes/twentytwentyfive/parts/sidebar.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/parts/vertical-header.html b/content/themes/twentytwentyfive/parts/vertical-header.html
deleted file mode 100644
index e102cc7..0000000
--- a/content/themes/twentytwentyfive/parts/vertical-header.html
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/content/themes/twentytwentyfive/patterns/banner-about-book.php b/content/themes/twentytwentyfive/patterns/banner-about-book.php
deleted file mode 100644
index dc06f30..0000000
--- a/content/themes/twentytwentyfive/patterns/banner-about-book.php
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/banner-cover-big-heading.php b/content/themes/twentytwentyfive/patterns/banner-cover-big-heading.php
deleted file mode 100644
index 1b00c3a..0000000
--- a/content/themes/twentytwentyfive/patterns/banner-cover-big-heading.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/banner-intro-image.php b/content/themes/twentytwentyfive/patterns/banner-intro-image.php
deleted file mode 100644
index ea70d00..0000000
--- a/content/themes/twentytwentyfive/patterns/banner-intro-image.php
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/banner-intro.php b/content/themes/twentytwentyfive/patterns/banner-intro.php
deleted file mode 100644
index 48a816a..0000000
--- a/content/themes/twentytwentyfive/patterns/banner-intro.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
- ' . esc_html_x( 'Fleurs', 'Example brand name.', 'twentytwentyfive' ) . ''
- );
- ?>
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/banner-poster.php b/content/themes/twentytwentyfive/patterns/banner-poster.php
deleted file mode 100644
index 3c78fe3..0000000
--- a/content/themes/twentytwentyfive/patterns/banner-poster.php
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- historias, iсторії , iστορίες ”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
- );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/banner-with-description-and-images-grid.php b/content/themes/twentytwentyfive/patterns/banner-with-description-and-images-grid.php
deleted file mode 100644
index 8fc3369..0000000
--- a/content/themes/twentytwentyfive/patterns/banner-with-description-and-images-grid.php
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ' . esc_html_x( 'Fleurs', 'Example brand name.', 'twentytwentyfive' ) . ''
- );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/binding-format.php b/content/themes/twentytwentyfive/patterns/binding-format.php
deleted file mode 100644
index a2ca92d..0000000
--- a/content/themes/twentytwentyfive/patterns/binding-format.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/comments.php b/content/themes/twentytwentyfive/patterns/comments.php
deleted file mode 100644
index 08c500f..0000000
--- a/content/themes/twentytwentyfive/patterns/comments.php
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/contact-centered-social-link.php b/content/themes/twentytwentyfive/patterns/contact-centered-social-link.php
deleted file mode 100644
index 7fad89b..0000000
--- a/content/themes/twentytwentyfive/patterns/contact-centered-social-link.php
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
Feel free to reach out. ', 'Heading of the Contact social link pattern', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/contact-info-locations.php b/content/themes/twentytwentyfive/patterns/contact-info-locations.php
deleted file mode 100644
index 393d0a7..0000000
--- a/content/themes/twentytwentyfive/patterns/contact-info-locations.php
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/contact-location-and-link.php b/content/themes/twentytwentyfive/patterns/contact-location-and-link.php
deleted file mode 100644
index 95cbbe3..0000000
--- a/content/themes/twentytwentyfive/patterns/contact-location-and-link.php
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-book-links.php b/content/themes/twentytwentyfive/patterns/cta-book-links.php
deleted file mode 100644
index b142d08..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-book-links.php
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
international editions.', 'Pattern placeholder text with link.', 'twentytwentyfive' ) ); ?>
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-book-locations.php b/content/themes/twentytwentyfive/patterns/cta-book-locations.php
deleted file mode 100644
index 37e6419..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-book-locations.php
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-centered-heading.php b/content/themes/twentytwentyfive/patterns/cta-centered-heading.php
deleted file mode 100644
index e1c8d7e..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-centered-heading.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-events-list.php b/content/themes/twentytwentyfive/patterns/cta-events-list.php
deleted file mode 100644
index 5cdd050..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-events-list.php
+++ /dev/null
@@ -1,171 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- historias, iсторії , iστορίες ”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
- );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- historias, iсторії , iστορίες ”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
- );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-grid-products-link.php b/content/themes/twentytwentyfive/patterns/cta-grid-products-link.php
deleted file mode 100644
index 87851b4..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-grid-products-link.php
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- tags. The price value has a font size set.*/
- esc_html__( 'Starting at%s/month', 'twentytwentyfive' ),
- '' . esc_html__( '30€', 'twentytwentyfive' ) . ' '
- );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-heading-search.php b/content/themes/twentytwentyfive/patterns/cta-heading-search.php
deleted file mode 100644
index 00dffc2..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-heading-search.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/cta-newsletter.php b/content/themes/twentytwentyfive/patterns/cta-newsletter.php
deleted file mode 100644
index 679e1e0..0000000
--- a/content/themes/twentytwentyfive/patterns/cta-newsletter.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/event-3-col.php b/content/themes/twentytwentyfive/patterns/event-3-col.php
deleted file mode 100644
index 08a7d7a..0000000
--- a/content/themes/twentytwentyfive/patterns/event-3-col.php
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/event-rsvp.php b/content/themes/twentytwentyfive/patterns/event-rsvp.php
deleted file mode 100644
index 1ba58e5..0000000
--- a/content/themes/twentytwentyfive/patterns/event-rsvp.php
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- historias, iсторії , iστορίες ”', 'Placeholder heading in four languages.', 'twentytwentyfive' )
- );
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/event-schedule.php b/content/themes/twentytwentyfive/patterns/event-schedule.php
deleted file mode 100644
index ba5156d..0000000
--- a/content/themes/twentytwentyfive/patterns/event-schedule.php
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Prof. Fiona Presley', 'Pattern placeholder text with link.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Prof. Fiona Presley', 'Pattern placeholder text with link.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Prof. Fiona Presley', 'Pattern placeholder text with link.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Prof. Fiona Presley', 'Pattern placeholder text with link.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/footer-centered.php b/content/themes/twentytwentyfive/patterns/footer-centered.php
deleted file mode 100644
index be82e0f..0000000
--- a/content/themes/twentytwentyfive/patterns/footer-centered.php
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WordPress'
- );
- ?>
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/footer-columns.php b/content/themes/twentytwentyfive/patterns/footer-columns.php
deleted file mode 100644
index 6b12c32..0000000
--- a/content/themes/twentytwentyfive/patterns/footer-columns.php
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WordPress'
- );
- ?>
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/footer-newsletter.php b/content/themes/twentytwentyfive/patterns/footer-newsletter.php
deleted file mode 100644
index 1c88efc..0000000
--- a/content/themes/twentytwentyfive/patterns/footer-newsletter.php
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WordPress'
- );
- ?>
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/footer-social.php b/content/themes/twentytwentyfive/patterns/footer-social.php
deleted file mode 100644
index 006cb83..0000000
--- a/content/themes/twentytwentyfive/patterns/footer-social.php
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WordPress'
- );
- ?>
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/footer.php b/content/themes/twentytwentyfive/patterns/footer.php
deleted file mode 100644
index 4dec2cc..0000000
--- a/content/themes/twentytwentyfive/patterns/footer.php
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WordPress'
- );
- ?>
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/format-audio.php b/content/themes/twentytwentyfive/patterns/format-audio.php
deleted file mode 100644
index 852f1d4..0000000
--- a/content/themes/twentytwentyfive/patterns/format-audio.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/format-link.php b/content/themes/twentytwentyfive/patterns/format-link.php
deleted file mode 100644
index 2605a89..0000000
--- a/content/themes/twentytwentyfive/patterns/format-link.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/grid-videos.php b/content/themes/twentytwentyfive/patterns/grid-videos.php
deleted file mode 100644
index 56f54c2..0000000
--- a/content/themes/twentytwentyfive/patterns/grid-videos.php
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/grid-with-categories.php b/content/themes/twentytwentyfive/patterns/grid-with-categories.php
deleted file mode 100644
index f0762aa..0000000
--- a/content/themes/twentytwentyfive/patterns/grid-with-categories.php
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/header-centered.php b/content/themes/twentytwentyfive/patterns/header-centered.php
deleted file mode 100644
index 4468001..0000000
--- a/content/themes/twentytwentyfive/patterns/header-centered.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/header-columns.php b/content/themes/twentytwentyfive/patterns/header-columns.php
deleted file mode 100644
index 7cb8eab..0000000
--- a/content/themes/twentytwentyfive/patterns/header-columns.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/header-large-title.php b/content/themes/twentytwentyfive/patterns/header-large-title.php
deleted file mode 100644
index 8a4cd38..0000000
--- a/content/themes/twentytwentyfive/patterns/header-large-title.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/header.php b/content/themes/twentytwentyfive/patterns/header.php
deleted file mode 100644
index 8cccb6c..0000000
--- a/content/themes/twentytwentyfive/patterns/header.php
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/heading-and-paragraph-with-image.php b/content/themes/twentytwentyfive/patterns/heading-and-paragraph-with-image.php
deleted file mode 100644
index 6ece41c..0000000
--- a/content/themes/twentytwentyfive/patterns/heading-and-paragraph-with-image.php
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hero-book.php b/content/themes/twentytwentyfive/patterns/hero-book.php
deleted file mode 100644
index 31d3465..0000000
--- a/content/themes/twentytwentyfive/patterns/hero-book.php
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hero-full-width-image.php b/content/themes/twentytwentyfive/patterns/hero-full-width-image.php
deleted file mode 100644
index 9507971..0000000
--- a/content/themes/twentytwentyfive/patterns/hero-full-width-image.php
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hero-overlapped-book-cover-with-links.php b/content/themes/twentytwentyfive/patterns/hero-overlapped-book-cover-with-links.php
deleted file mode 100644
index 677e992..0000000
--- a/content/themes/twentytwentyfive/patterns/hero-overlapped-book-cover-with-links.php
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
international editions.', 'Pattern placeholder text with link.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hero-podcast.php b/content/themes/twentytwentyfive/patterns/hero-podcast.php
deleted file mode 100644
index 43610a4..0000000
--- a/content/themes/twentytwentyfive/patterns/hero-podcast.php
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hidden-404.php b/content/themes/twentytwentyfive/patterns/hidden-404.php
deleted file mode 100644
index b548067..0000000
--- a/content/themes/twentytwentyfive/patterns/hidden-404.php
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hidden-blog-heading.php b/content/themes/twentytwentyfive/patterns/hidden-blog-heading.php
deleted file mode 100644
index a632a2b..0000000
--- a/content/themes/twentytwentyfive/patterns/hidden-blog-heading.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hidden-search.php b/content/themes/twentytwentyfive/patterns/hidden-search.php
deleted file mode 100644
index d4a7090..0000000
--- a/content/themes/twentytwentyfive/patterns/hidden-search.php
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hidden-sidebar.php b/content/themes/twentytwentyfive/patterns/hidden-sidebar.php
deleted file mode 100644
index 1b6dccb..0000000
--- a/content/themes/twentytwentyfive/patterns/hidden-sidebar.php
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/hidden-written-by.php b/content/themes/twentytwentyfive/patterns/hidden-written-by.php
deleted file mode 100644
index a8ffce6..0000000
--- a/content/themes/twentytwentyfive/patterns/hidden-written-by.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/logos.php b/content/themes/twentytwentyfive/patterns/logos.php
deleted file mode 100644
index 7d16329..0000000
--- a/content/themes/twentytwentyfive/patterns/logos.php
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/media-instagram-grid.php b/content/themes/twentytwentyfive/patterns/media-instagram-grid.php
deleted file mode 100644
index f064293..0000000
--- a/content/themes/twentytwentyfive/patterns/media-instagram-grid.php
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/more-posts.php b/content/themes/twentytwentyfive/patterns/more-posts.php
deleted file mode 100644
index 6dd8f82..0000000
--- a/content/themes/twentytwentyfive/patterns/more-posts.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/overlapped-images.php b/content/themes/twentytwentyfive/patterns/overlapped-images.php
deleted file mode 100644
index f7e8215..0000000
--- a/content/themes/twentytwentyfive/patterns/overlapped-images.php
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ' . esc_html_x( 'Fleurs', 'Example brand name.', 'twentytwentyfive' ) . ''
- );
- ?>
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-business-home.php b/content/themes/twentytwentyfive/patterns/page-business-home.php
deleted file mode 100644
index e94cf50..0000000
--- a/content/themes/twentytwentyfive/patterns/page-business-home.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-coming-soon.php b/content/themes/twentytwentyfive/patterns/page-coming-soon.php
deleted file mode 100644
index baab759..0000000
--- a/content/themes/twentytwentyfive/patterns/page-coming-soon.php
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-cv-bio.php b/content/themes/twentytwentyfive/patterns/page-cv-bio.php
deleted file mode 100644
index 13dc4f3..0000000
--- a/content/themes/twentytwentyfive/patterns/page-cv-bio.php
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-landing-book.php b/content/themes/twentytwentyfive/patterns/page-landing-book.php
deleted file mode 100644
index 3874c78..0000000
--- a/content/themes/twentytwentyfive/patterns/page-landing-book.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-landing-event.php b/content/themes/twentytwentyfive/patterns/page-landing-event.php
deleted file mode 100644
index 9915e20..0000000
--- a/content/themes/twentytwentyfive/patterns/page-landing-event.php
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-landing-podcast.php b/content/themes/twentytwentyfive/patterns/page-landing-podcast.php
deleted file mode 100644
index 48ac731..0000000
--- a/content/themes/twentytwentyfive/patterns/page-landing-podcast.php
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-link-in-bio-heading-paragraph-links-image.php b/content/themes/twentytwentyfive/patterns/page-link-in-bio-heading-paragraph-links-image.php
deleted file mode 100644
index 7d5e1ef..0000000
--- a/content/themes/twentytwentyfive/patterns/page-link-in-bio-heading-paragraph-links-image.php
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-link-in-bio-wide-margins.php b/content/themes/twentytwentyfive/patterns/page-link-in-bio-wide-margins.php
deleted file mode 100644
index 3f095cc..0000000
--- a/content/themes/twentytwentyfive/patterns/page-link-in-bio-wide-margins.php
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-link-in-bio-with-tight-margins.php b/content/themes/twentytwentyfive/patterns/page-link-in-bio-with-tight-margins.php
deleted file mode 100644
index 264ce63..0000000
--- a/content/themes/twentytwentyfive/patterns/page-link-in-bio-with-tight-margins.php
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-portfolio-home.php b/content/themes/twentytwentyfive/patterns/page-portfolio-home.php
deleted file mode 100644
index 7a2a5b3..0000000
--- a/content/themes/twentytwentyfive/patterns/page-portfolio-home.php
+++ /dev/null
@@ -1,236 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/page-shop-home.php b/content/themes/twentytwentyfive/patterns/page-shop-home.php
deleted file mode 100644
index ce87caf..0000000
--- a/content/themes/twentytwentyfive/patterns/page-shop-home.php
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/post-navigation.php b/content/themes/twentytwentyfive/patterns/post-navigation.php
deleted file mode 100644
index 22852b2..0000000
--- a/content/themes/twentytwentyfive/patterns/post-navigation.php
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/pricing-2-col.php b/content/themes/twentytwentyfive/patterns/pricing-2-col.php
deleted file mode 100644
index c1ac80b..0000000
--- a/content/themes/twentytwentyfive/patterns/pricing-2-col.php
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/pricing-3-col.php b/content/themes/twentytwentyfive/patterns/pricing-3-col.php
deleted file mode 100644
index ff66c8b..0000000
--- a/content/themes/twentytwentyfive/patterns/pricing-3-col.php
+++ /dev/null
@@ -1,148 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/services-3-col.php b/content/themes/twentytwentyfive/patterns/services-3-col.php
deleted file mode 100644
index 44a4bc0..0000000
--- a/content/themes/twentytwentyfive/patterns/services-3-col.php
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/services-subscriber-only-section.php b/content/themes/twentytwentyfive/patterns/services-subscriber-only-section.php
deleted file mode 100644
index 713103c..0000000
--- a/content/themes/twentytwentyfive/patterns/services-subscriber-only-section.php
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/services-team-photos.php b/content/themes/twentytwentyfive/patterns/services-team-photos.php
deleted file mode 100644
index 865438c..0000000
--- a/content/themes/twentytwentyfive/patterns/services-team-photos.php
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-404-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-404-vertical-header-blog.php
deleted file mode 100644
index 5506cb4..0000000
--- a/content/themes/twentytwentyfive/patterns/template-404-vertical-header-blog.php
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-archive-news-blog.php b/content/themes/twentytwentyfive/patterns/template-archive-news-blog.php
deleted file mode 100644
index 8ad1942..0000000
--- a/content/themes/twentytwentyfive/patterns/template-archive-news-blog.php
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-archive-photo-blog.php b/content/themes/twentytwentyfive/patterns/template-archive-photo-blog.php
deleted file mode 100644
index e94b245..0000000
--- a/content/themes/twentytwentyfive/patterns/template-archive-photo-blog.php
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-archive-text-blog.php b/content/themes/twentytwentyfive/patterns/template-archive-text-blog.php
deleted file mode 100644
index 7efe1b4..0000000
--- a/content/themes/twentytwentyfive/patterns/template-archive-text-blog.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-archive-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-archive-vertical-header-blog.php
deleted file mode 100644
index 9a25fe3..0000000
--- a/content/themes/twentytwentyfive/patterns/template-archive-vertical-header-blog.php
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-home-news-blog.php b/content/themes/twentytwentyfive/patterns/template-home-news-blog.php
deleted file mode 100644
index 7dea528..0000000
--- a/content/themes/twentytwentyfive/patterns/template-home-news-blog.php
+++ /dev/null
@@ -1,166 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-home-photo-blog.php b/content/themes/twentytwentyfive/patterns/template-home-photo-blog.php
deleted file mode 100644
index 29ed376..0000000
--- a/content/themes/twentytwentyfive/patterns/template-home-photo-blog.php
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-home-posts-grid-news-blog.php b/content/themes/twentytwentyfive/patterns/template-home-posts-grid-news-blog.php
deleted file mode 100644
index 167f0a0..0000000
--- a/content/themes/twentytwentyfive/patterns/template-home-posts-grid-news-blog.php
+++ /dev/null
@@ -1,136 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-home-text-blog.php b/content/themes/twentytwentyfive/patterns/template-home-text-blog.php
deleted file mode 100644
index 81e482e..0000000
--- a/content/themes/twentytwentyfive/patterns/template-home-text-blog.php
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-home-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-home-vertical-header-blog.php
deleted file mode 100644
index b44b5dd..0000000
--- a/content/themes/twentytwentyfive/patterns/template-home-vertical-header-blog.php
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-home-with-sidebar-news-blog.php b/content/themes/twentytwentyfive/patterns/template-home-with-sidebar-news-blog.php
deleted file mode 100644
index ee67322..0000000
--- a/content/themes/twentytwentyfive/patterns/template-home-with-sidebar-news-blog.php
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-page-photo-blog.php b/content/themes/twentytwentyfive/patterns/template-page-photo-blog.php
deleted file mode 100644
index 54ccb20..0000000
--- a/content/themes/twentytwentyfive/patterns/template-page-photo-blog.php
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-page-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-page-vertical-header-blog.php
deleted file mode 100644
index 1c23770..0000000
--- a/content/themes/twentytwentyfive/patterns/template-page-vertical-header-blog.php
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-query-loop-news-blog.php b/content/themes/twentytwentyfive/patterns/template-query-loop-news-blog.php
deleted file mode 100644
index c55b337..0000000
--- a/content/themes/twentytwentyfive/patterns/template-query-loop-news-blog.php
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-query-loop-photo-blog.php b/content/themes/twentytwentyfive/patterns/template-query-loop-photo-blog.php
deleted file mode 100644
index c9f150c..0000000
--- a/content/themes/twentytwentyfive/patterns/template-query-loop-photo-blog.php
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-query-loop-text-blog.php b/content/themes/twentytwentyfive/patterns/template-query-loop-text-blog.php
deleted file mode 100644
index e90e480..0000000
--- a/content/themes/twentytwentyfive/patterns/template-query-loop-text-blog.php
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-query-loop-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-query-loop-vertical-header-blog.php
deleted file mode 100644
index b572e93..0000000
--- a/content/themes/twentytwentyfive/patterns/template-query-loop-vertical-header-blog.php
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-query-loop.php b/content/themes/twentytwentyfive/patterns/template-query-loop.php
deleted file mode 100644
index 82dc4de..0000000
--- a/content/themes/twentytwentyfive/patterns/template-query-loop.php
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-search-news-blog.php b/content/themes/twentytwentyfive/patterns/template-search-news-blog.php
deleted file mode 100644
index e4ff042..0000000
--- a/content/themes/twentytwentyfive/patterns/template-search-news-blog.php
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-search-photo-blog.php b/content/themes/twentytwentyfive/patterns/template-search-photo-blog.php
deleted file mode 100644
index c08992c..0000000
--- a/content/themes/twentytwentyfive/patterns/template-search-photo-blog.php
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-search-text-blog.php b/content/themes/twentytwentyfive/patterns/template-search-text-blog.php
deleted file mode 100644
index 124af4a..0000000
--- a/content/themes/twentytwentyfive/patterns/template-search-text-blog.php
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-search-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-search-vertical-header-blog.php
deleted file mode 100644
index 3121358..0000000
--- a/content/themes/twentytwentyfive/patterns/template-search-vertical-header-blog.php
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php b/content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php
deleted file mode 100644
index 9f86084..0000000
--- a/content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-single-news-blog.php b/content/themes/twentytwentyfive/patterns/template-single-news-blog.php
deleted file mode 100644
index 86ebd9c..0000000
--- a/content/themes/twentytwentyfive/patterns/template-single-news-blog.php
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-single-offset.php b/content/themes/twentytwentyfive/patterns/template-single-offset.php
deleted file mode 100644
index bc71fa2..0000000
--- a/content/themes/twentytwentyfive/patterns/template-single-offset.php
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-single-photo-blog.php b/content/themes/twentytwentyfive/patterns/template-single-photo-blog.php
deleted file mode 100644
index 884259b..0000000
--- a/content/themes/twentytwentyfive/patterns/template-single-photo-blog.php
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-single-text-blog.php b/content/themes/twentytwentyfive/patterns/template-single-text-blog.php
deleted file mode 100644
index 2b60f96..0000000
--- a/content/themes/twentytwentyfive/patterns/template-single-text-blog.php
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/template-single-vertical-header-blog.php b/content/themes/twentytwentyfive/patterns/template-single-vertical-header-blog.php
deleted file mode 100644
index 9d8c310..0000000
--- a/content/themes/twentytwentyfive/patterns/template-single-vertical-header-blog.php
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/testimonials-2-col.php b/content/themes/twentytwentyfive/patterns/testimonials-2-col.php
deleted file mode 100644
index 7f33f2c..0000000
--- a/content/themes/twentytwentyfive/patterns/testimonials-2-col.php
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Atlanta, GA ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/testimonials-6-col.php b/content/themes/twentytwentyfive/patterns/testimonials-6-col.php
deleted file mode 100644
index e3bb055..0000000
--- a/content/themes/twentytwentyfive/patterns/testimonials-6-col.php
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
- Springfield, IL ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/testimonials-large.php b/content/themes/twentytwentyfive/patterns/testimonials-large.php
deleted file mode 100644
index b9d727c..0000000
--- a/content/themes/twentytwentyfive/patterns/testimonials-large.php
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Atlanta, GA ', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/text-faqs.php b/content/themes/twentytwentyfive/patterns/text-faqs.php
deleted file mode 100644
index fd8397b..0000000
--- a/content/themes/twentytwentyfive/patterns/text-faqs.php
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/patterns/vertical-header.php b/content/themes/twentytwentyfive/patterns/vertical-header.php
deleted file mode 100644
index 52cbf9a..0000000
--- a/content/themes/twentytwentyfive/patterns/vertical-header.php
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
diff --git a/content/themes/twentytwentyfive/readme.txt b/content/themes/twentytwentyfive/readme.txt
deleted file mode 100644
index 7f2be9b..0000000
--- a/content/themes/twentytwentyfive/readme.txt
+++ /dev/null
@@ -1,267 +0,0 @@
-=== Twenty Twenty-Five ===
-Contributors: wordpressdotorg
-Requires at least: 6.7
-Tested up to: 6.8
-Requires PHP: 7.2
-Stable tag: 1.2
-License: GPLv2 or later
-License URI: http://www.gnu.org/licenses/gpl-2.0.html
-
-== Description ==
-
-Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
-
-
-== Changelog ==
-
-= 1.2 =
-* Released: April 15, 2025
-
-https://wordpress.org/documentation/article/twenty-twenty-five-changelog/#Version_1.2
-
-= 1.1 =
-* Released: February 11, 2025
-
-https://wordpress.org/documentation/article/twenty-twenty-five-changelog/#Version_1.1
-
-= 1.0 =
-* Released: November 13, 2024
-
-https://wordpress.org/documentation/article/twenty-twenty-five-changelog/#Version_1.0
-
-== Copyright ==
-
-Twenty Twenty-Five WordPress Theme, (C) 2024-2025 WordPress.org and contributors.
-Twenty Twenty-Five is distributed under the terms of the GNU GPL.
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-This theme incorporates code from:
-
-Twenty Twenty-Four WordPress Theme, (C) 2023 WordPress.org
-License: GPLv2 or later. License URI: http://www.gnu.org/licenses/gpl-2.0.html
-
-
-This theme bundles the following third-party resources:
-
-=== Fonts ===
-.ttf files downloaded from fonts.google.com have been converted to .woff2 using
-https://github.com/google/woff2
-
-
-Fira Code Font
-Copyright (c) 2014, The Fira Code Project Authors
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/tonsky/FiraCode
-Source: https://fonts.google.com/specimen/Fira+Code
-
-Manrope Font
-Copyright (c) 2018 The Manrope Project Authors
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/sharanda/manrope
-Source: https://fonts.google.com/specimen/Manrope
-
-Vollkorn Font
-Copyright (c) 2005–2018, Friedrich Althausen
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/FAlthausen/Vollkorn-Typeface
-Source: https://fonts.google.com/specimen/Vollkorn
-
-Fira Sans Font
-Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A.
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/mozilla/Fira
-Source: https://fonts.google.com/specimen/Fira+Sans
-
-Platypi Font
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/d-sargent/platypi
-Source: https://fonts.google.com/specimen/Platypi
-
-Ysabeau Office Font
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/CatharsisFonts/Ysabeau
-Source: https://fonts.google.com/specimen/Ysabeau+Office
-
-Literata Font
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/googlefonts/literata
-Source: https://fonts.google.com/specimen/Literata
-
-Roboto Slab Font
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: hhttps://github.com/googlefonts/robotoslab
-Source: https://fonts.google.com/specimen/Roboto+Slab
-
-Beiruti Font
-License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1
-Reference: https://github.com/googlefonts/beiruti
-Source: https://fonts.google.com/specimen/Beiruti
-
-=== Images ===
-
-Northern Buttercups.
-Free public domain CC0 image.
-northern-buttercups-flowers.webp
-https://www.rawpixel.com/image/8802603
-
-License: CC0 https://creativecommons.org/publicdomain/zero/1.0/
-Small totara tree on ridge above Long Point, Porirua Harbour, by Leslie Adkin.
-Free public domain CC0 image.
-404-image.webp
-https://www.rawpixel.com/image/13029755
-
-Old gray paris map.
-Free public domain CC0 image.
-location.webp
-https://www.rawpixel.com/image/6033837
-
-Delphinium (Larkspur).
-Free public domain CC0 image.
-delphinium-flowers.webp
-https://www.rawpixel.com/image/2224378
-
-Campanula Alliariifolia (Cornish Bellflower).
-Free public domain CC0 image.
-campanula-alliariifolia-flower.webp
-https://www.rawpixel.com/image/2222755
-
-Centaurea Ruthenica(Star Thristle).
-Free public domain CC0 image.
-star-thristle-flower.webp
-https://www.rawpixel.com/image/2211732
-
-Botany flowers.
-Free public domain CC0 image.
-botany-flowers.webp
-botany-flowers-closeup.webp
-https://www.rawpixel.com/image/8812207
-
-Person typing on a typewriter.
-Free public domain CC0 image.
-typewriter.webp
-https://www.rawpixel.com/image/12240004/photo-image-face-person-technology
-
-Woman wearing a traditional nurse's cap, photographed from behind.
-nurse.webp
-Free public domain CC0 image.
-https://www.rawpixel.com/image/8782633/photo-image-person-white
-
-Woman splashing water, at Lake George.
-woman-splashing-water.webp
-Free public domain CC0 image.
-https://www.rawpixel.com/image/9758986/photo-image-people-art-vintage
-
-Man in hat, standing in front of a building.
-man-in-hat.webp
-Free public domain CC0 image.
-https://www.slam.org/collection/objects/62642/
-
-African Woman by Pascal Sébah and Jean Pascal Sébah
-Free public domain CC0 image.
-agenda-img-4.webp
-https://www.rawpixel.com/image/14263497
-
-Two Girls, Mill Workers by Lewis W Hine.
-Free public domain CC0 image.
-link-in-bio-background.webp
-https://www.rawpixel.com/image/14265869
-
-Cliff Palace, Mesa Verde National Park, Colorado (vertical orientation)
-Free public domain CC0 image.
-poster-image-background.webp
-ruins-image.webp
-https://www.rawpixel.com/image/8802835
-
-Flower meadow in Llano, Texas.
-Free public domain CC0 image.
-coming-soon-bg-image.webp
-flower-meadow-square.webp
-services-subscriber-photo.webp
-https://www.rawpixel.com/image/8800058
-
-Hibiscus flower.
-Free public domain CC0 image.
-grid-flower-1.webp
-red-hibiscus-closeup.webp
-https://www.rawpixel.com/image/8799471
-
-Phacelia tanacetifolia (Lacy Phacelia) enlarged 4 times from Urformen der Kunst (1928) by Karl Blossfeldt.
-Free public domain CC0 image.
-grid-flower-2.webp
-https://www.rawpixel.com/image/2222743
-
-At Hawaiian Greenhouse, Inc, near Pahoa, anthuriums grow under a sun screen.
-Free public domain CC0 image.
-category-anthuriums.webp
-https://www.rawpixel.com/image/8799473
-
-Sunflower
-Free public domain CC0 image.
-category-sunflowers.webp
-https://www.rawpixel.com/image/8799614
-
-Detail of cactus "Saguaros, Saguro National Monument," Arizona. Photographer: Adams, Ansel, 1902-1984
-Free public domain CC0 image.
-category-cactus.webp
-https://www.rawpixel.com/image/8799351
-
-Vash Gon - Jicarilla by Edward S Curtis.
-Free public domain CC0 image.
-vash-gon-square.webp
-https://www.rawpixel.com/image/14262822
-
-One of the 40 Or More Species of Coral at John Pennekamp Coral Reef State Park, a Few Miles Off Key Largo.
-Free public domain CC0 image.
-coral-square.webp
-https://www.rawpixel.com/image/8799931
-
-Parthenon op de Akropolis in Athene (westzijde) (c. 1880 - c. 1890) by Rhomaides Frères.
-Free public domain CC0 image.
-parthenon-square.webp
-https://www.rawpixel.com/image/13759051
-
-Near East Dallas Creek, 05/1972. Photographer: Norton, Boyd.
-Free public domain CC0 image.
-dallas-creek-square.webp
-https://www.rawpixel.com/image/8802688
-
-Marshland birds at the Lake Havasu National Wildlife Refuge.
-Free public domain CC0 image.
-marshland-birds-square.webp
-https://www.rawpixel.com/image/8799403
-
-Photograph - New York [Portrait - Washington Square] by Paul Strand.
-Free public domain CC0 image.
-hero-podcast.webp
-https://www.rawpixel.com/image/14264288
-
-Evening Breeze by Asahachi Kono.
-Free public domain CC0 image.
-link-in-bio-image
-https://www.rawpixel.com/image/14262995
-
-Bust by Mathew brady.
-Free public domain CC0 image.
-book-image-landing.webp
-book-image.webp
-https://www.rawpixel.com/image/8799536
-Book template by Beatriz Fialho, public domain.
-
-Flora of Akaka Falls State Park.
-Free public domain CC0 image.
-akaka-falls-state-park-flora.webp
-https://www.rawpixel.com/image/8802845
-
-Closeup of plantlife in the Malibu Canyon area of the Santa Monica Mountains.
-Free public domain CC0 image.
-malibu-plantlife.webp
-https://www.rawpixel.com/image/8799918
diff --git a/content/themes/twentytwentyfive/screenshot.png b/content/themes/twentytwentyfive/screenshot.png
deleted file mode 100644
index 2dd45d3..0000000
Binary files a/content/themes/twentytwentyfive/screenshot.png and /dev/null differ
diff --git a/content/themes/twentytwentyfive/style.css b/content/themes/twentytwentyfive/style.css
deleted file mode 100644
index dbec2fe..0000000
--- a/content/themes/twentytwentyfive/style.css
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
-Theme Name: Twenty Twenty-Five
-Theme URI: https://wordpress.org/themes/twentytwentyfive/
-Author: the WordPress team
-Author URI: https://wordpress.org
-Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
-Requires at least: 6.7
-Tested up to: 6.8
-Requires PHP: 7.2
-Version: 1.2
-License: GNU General Public License v2 or later
-License URI: http://www.gnu.org/licenses/gpl-2.0.html
-Text Domain: twentytwentyfive
-Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
-*/
-
-/*
- * Link styles
- * https://github.com/WordPress/gutenberg/issues/42319
- */
-a {
- text-decoration-thickness: 1px !important;
- text-underline-offset: .1em;
-}
-
-/* Focus styles */
-:where(.wp-site-blocks *:focus) {
- outline-width: 2px;
- outline-style: solid;
-}
-
-/* Increase the bottom margin on submenus, so that the outline is visible. */
-.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
- margin-bottom: 3px;
-}
-
-/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
-.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
- outline-offset: 4px;
-}
-
-/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
-.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
- outline-offset: 0;
-}
-
-/*
- * Progressive enhancement to reduce widows and orphans
- * https://github.com/WordPress/gutenberg/issues/55190
- */
-h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
- text-wrap: pretty;
-}
-
-/*
- * Change the position of the more block on the front, by making it a block level element.
- * https://github.com/WordPress/gutenberg/issues/65934
-*/
-.more-link {
- display: block;
-}
diff --git a/content/themes/twentytwentyfive/styles/01-evening.json b/content/themes/twentytwentyfive/styles/01-evening.json
deleted file mode 100644
index 6b9a11a..0000000
--- a/content/themes/twentytwentyfive/styles/01-evening.json
+++ /dev/null
@@ -1,126 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Evening",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#1B1B1B",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#F0F0F0",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#786D0A",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#442369",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#D1D0EA",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#CBCBCB",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#353535",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#FFFFFF33",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "blocks": {
- "core/button": {
- "variations": {
- "outline": {
- "spacing": {
- "padding": {
- "bottom": "0.6rem",
- "left": "1.6rem",
- "right": "1.6rem",
- "top": "0.6rem"
- }
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)",
- "text": "var:preset|color|base"
- }
- },
- "spacing": {
- "padding": {
- "bottom": "0.6rem",
- "left": "1.6rem",
- "right": "1.6rem",
- "top": "0.6rem"
- }
- }
- }
- },
- "variations": {
- "section-2": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/02-noon.json b/content/themes/twentytwentyfive/styles/02-noon.json
deleted file mode 100644
index 32bed51..0000000
--- a/content/themes/twentytwentyfive/styles/02-noon.json
+++ /dev/null
@@ -1,461 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Noon",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#F8F7F5",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#191919",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#FFFFFF",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#F5B684",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#191919",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#5F5F5F",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#F1EEE9",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#19191933",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "typography": {
- "fontFamilies": [
- {
- "name": "Beiruti",
- "slug": "beiruti",
- "fontFamily": "Beiruti, sans-serif",
- "fontFace": [
- {
- "fontFamily": "Beiruti",
- "fontStyle": "normal",
- "fontWeight": "200 900",
- "src": [
- "file:./assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.9rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.2rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.8rem",
- "min": "1.6rem"
- },
- "name": "Large",
- "size": "1.6rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2.2rem",
- "min": "1.8em"
- },
- "name": "Extra Large",
- "size": "1.8rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.8rem",
- "min": "2rem"
- },
- "name": "Extra Extra Large",
- "size": "2rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.6"
- },
- "blocks": {
- "core/button": {
- "border": {
- "color": "var:preset|color|contrast"
- },
- "shadow": "var:preset|shadow|natural",
- "spacing": {
- "padding": {
- "bottom": "0.6rem",
- "left": "1.6rem",
- "right": "1.6rem",
- "top": "0.6rem"
- }
- },
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti"
- },
- "variations": {
- "outline": {
- "shadow": "none",
- "spacing": {
- "padding": {
- "bottom": "0.6rem",
- "left": "1.6rem",
- "right": "1.6rem",
- "top": "0.6rem"
- }
- }
- }
- }
- },
- "core/list": {
- "typography": {
- "lineHeight": "1.3"
- }
- },
- "core/loginout": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/post-title": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti",
- "fontWeight": "500",
- "lineHeight": "1"
- }
- },
- "core/quote": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/query-pagination": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/query-title": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/site-tagline": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti",
- "fontWeight": "600",
- "letterSpacing": "2.4px",
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- }
- },
- "h4": {
- "typography": {
- "fontSize": "var:preset|font-size|large"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "0px"
- }
- },
- "h6": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti",
- "fontWeight": "500",
- "letterSpacing": "-0.02em",
- "lineHeight": "1.02"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "variations": {
- "section-4": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- },
- "heading": {
- "color": {
- "text": "currentColor"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|base"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/03-dusk.json b/content/themes/twentytwentyfive/styles/03-dusk.json
deleted file mode 100644
index bbcdf63..0000000
--- a/content/themes/twentytwentyfive/styles/03-dusk.json
+++ /dev/null
@@ -1,396 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Dusk",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#E2E2E2",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#3B3B3B",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#F5EDFF",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#650DD4",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#191919",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#5F5F5F",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#DBDBDB",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#3B3B3B33",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "custom": {
- "color": {
- "accent-2-opacity-20": "#650DD433"
- }
- },
- "typography": {
- "fontFamilies": [
- {
- "name": "Vollkorn",
- "slug": "vollkorn",
- "fontFamily": "Vollkorn, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2"
- ],
- "fontWeight": "400 900",
- "fontStyle": "italic",
- "fontFamily": "Vollkorn"
- },
- {
- "src": [
- "file:./assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2"
- ],
- "fontWeight": "400 900",
- "fontStyle": "normal",
- "fontFamily": "Vollkorn"
- }
- ]
- },
- {
- "name": "Fira Code",
- "slug": "fira-code",
- "fontFamily": "\"Fira Code\", monospace",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
- ],
- "fontWeight": "300 700",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Code\""
- }
- ]
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.18px",
- "lineHeight": "1.5"
- },
- "blocks": {
- "core/code": {
- "color": {
- "text": "var:preset|color|black",
- "background": "var:preset|color|accent-5"
- }
- },
- "core/paragraph": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/post-author-name": {
- "typography": {
- "fontWeight": "300"
- },
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "300"
- },
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "400",
- "letterSpacing": "-0.96px"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|black"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|vollkorn",
- "fontSize": "var:preset|font-size|x-large",
- "fontWeight": "400"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontWeight": "300",
- "letterSpacing": "-0.14px"
- },
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/quote": {
- "color": {
- "text": "var:preset|color|black"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontWeight": "500",
- "letterSpacing": "-0.18px"
- }
- },
- "core/site-title": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|vollkorn",
- "fontSize": "var:preset|font-size|x-large"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "400",
- "letterSpacing": "-0.36px"
- },
- "color": {
- "text": "var:preset|color|base",
- "background": "var:preset|color|accent-2"
- },
- "border": {
- "radius": "4px",
- "color": "transparent"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|vollkorn"
- }
- },
- "h1": {
- "typography": {
- "fontSize": "48px",
- "letterSpacing": "-0.96px;"
- }
- },
- "h2": {
- "typography": {
- "fontSize": "38px",
- "letterSpacing": "-0.96px"
- }
- },
- "h3": {
- "typography": {
- "fontSize": "32px",
- "letterSpacing": "-0.64px"
- }
- },
- "h4": {
- "typography": {
- "fontSize": "28px",
- "letterSpacing": "-0.56px"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "24px",
- "letterSpacing": "-0.48px"
- }
- },
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "elements": {
- "link": {
- "border": {
- "color": "var:custom|color|accent-2-opacity-20",
- "radius": "4px",
- "width": "0.8px",
- "style": "solid"
- }
- }
- }
- },
- "section-1": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- }
- },
- "section-2": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-3) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "heading": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-3": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "heading": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- "color": {
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "text": "var:preset|color|base"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "heading": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)",
- "text": "var:preset|color|base"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|base"
- }
- },
- "link": {
- "color": {
- "text": "var:preset|color|base"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/04-afternoon.json b/content/themes/twentytwentyfive/styles/04-afternoon.json
deleted file mode 100644
index d1edf01..0000000
--- a/content/themes/twentytwentyfive/styles/04-afternoon.json
+++ /dev/null
@@ -1,302 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Afternoon",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#DAE7BD",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#516028",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#C7F642",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#EBF6D3",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#303D10",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#516028",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#EBF6D3",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#51602833",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "typography": {
- "fontFamilies": [
- {
- "name": "Platypi",
- "slug": "platypi",
- "fontFamily": "Platypi",
- "fontFace": [
- {
- "fontFamily": "Platypi",
- "fontStyle": "normal",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
- ]
- },
- {
- "fontFamily": "Platypi",
- "fontStyle": "italic",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Ysabeau Office",
- "slug": "ysabeau-office",
- "fontFamily": "\"Ysabeau Office\", sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "normal",
- "fontFamily": "\"Ysabeau Office\""
- },
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "italic",
- "fontFamily": "\"Ysabeau Office\""
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "1.8rem",
- "min": "1.4rem"
- },
- "name": "Extra Large",
- "size": "1.4rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.6rem",
- "min": "2rem"
- },
- "name": "Extra Extra Large",
- "size": "2rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "letterSpacing": "-0.22px",
- "lineHeight": "1.5"
- },
- "blocks": {
- "core/button": {
- "border": {
- "radius": "0px"
- },
- "spacing": {
- "padding": {
- "bottom": "1rem",
- "left": "1.6rem",
- "right": "1.6rem",
- "top": "1rem"
- }
- },
- "variations": {
- "outline": {
- "spacing": {
- "padding": {
- "bottom": "1rem",
- "left": "1.6rem",
- "right": "1.6rem",
- "top": "1rem"
- }
- }
- }
- }
- },
- "core/code": {
- "typography": {
- "letterSpacing": "0px"
- }
- },
- "core/heading": {
- "typography": {
- "lineHeight": "1.2"
- }
- },
- "core/list": {
- "typography": {
- "lineHeight": "1.3"
- }
- },
- "core/loginout": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "400"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.1"
- }
- },
- "core/quote": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "fontSize": "var:preset|font-size|large",
- "letterSpacing": "1.44px",
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "fontWeight": "600",
- "letterSpacing": "1.44px",
- "textTransform": "uppercase"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, black)"
- }
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "normal"
- }
- },
- "h6": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "fontWeight": "400",
- "fontStyle": "initial",
- "letterSpacing": "initial",
- "textTransform": "initial"
- }
- }
- },
- "variations": {
- "section-2": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|accent-1"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|accent-3"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-5": {
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 90%, transparent)"
- }
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/05-twilight.json b/content/themes/twentytwentyfive/styles/05-twilight.json
deleted file mode 100644
index 833b4f3..0000000
--- a/content/themes/twentytwentyfive/styles/05-twilight.json
+++ /dev/null
@@ -1,254 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Twilight",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#131313",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#FFFFFF",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#4B52FF",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#FF7A5C",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#252525",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#FFFFFF",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#252525",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#FFFFFF33",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "typography": {
- "fontFamilies": [
- {
- "name": "Roboto Slab",
- "slug": "roboto-slab",
- "fontFamily": "\"Roboto Slab\", serif",
- "fontFace": [
- {
- "fontFamily": "\"Roboto Slab\"",
- "fontStyle": "normal",
- "fontWeight": "100 900",
- "src": [
- "file:./assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Manrope",
- "slug": "manrope",
- "fontFamily": "Manrope, sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
- ],
- "fontWeight": "200 800",
- "fontStyle": "normal",
- "fontFamily": "Manrope"
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2rem",
- "min": "1.75rem"
- },
- "name": "Extra Large",
- "size": "1.75rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.4rem",
- "min": "2.15rem"
- },
- "name": "Extra Extra Large",
- "size": "2.15rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "letterSpacing": "0"
- },
- "blocks": {
- "core/button": {
- "variations": {
- "outline": {
- "spacing": {
- "padding": {
- "bottom": "0.625rem",
- "left": "1.375rem",
- "right": "1.375rem",
- "top": "0.625rem"
- }
- }
- }
- }
- },
- "core/navigation": {
- "typography": {
- "fontSize": "var:preset|font-size|large",
- "letterSpacing": "-0.28px",
- "textTransform": "uppercase"
- }
- },
- "core/post-author": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/post-author-name": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "500"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|roboto-slab",
- "fontSize": "var:preset|font-size|xx-large",
- "fontWeight": "200"
- }
- },
- "core/search": {
- "typography": {
- "textTransform": "uppercase"
- }
- },
- "core/site-tagline": {
- "typography": {
- "fontSize": "var:preset|font-size|large"
- }
- },
- "core/site-title": {
- "typography": {
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "spacing": {
- "padding": {
- "bottom": "0.625rem",
- "left": "1.375rem",
- "right": "1.375rem",
- "top": "0.625rem"
- }
- },
- "typography": {
- "fontWeight": "500",
- "letterSpacing": "-0.36px",
- "textTransform": "uppercase"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|roboto-slab",
- "fontWeight": "300",
- "letterSpacing": "-0.5px",
- "lineHeight": "1.2"
- }
- }
- },
- "variations": {
- "section-2": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|accent-2"
- },
- ":hover": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "blocks": {
- "core/post-comments-form": {
- "css": "& textarea, input:not([type=submit]){border-radius:.25rem; border-color: color-mix(in srgb, currentColor 20%, transparent) !important;} & input[type=checkbox]{margin:0 .2rem 0 0 !important;} & label {font-size: var(--wp--preset--font-size--small); }"
- },
- "core/search": {
- "css": "& .wp-block-search__input{border-color: color-mix(in srgb, currentColor 20%, transparent);}"
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/06-morning.json b/content/themes/twentytwentyfive/styles/06-morning.json
deleted file mode 100644
index 60d1173..0000000
--- a/content/themes/twentytwentyfive/styles/06-morning.json
+++ /dev/null
@@ -1,505 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Morning",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#DFDCD7",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#191919",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#7A9BDB",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#F7E6FF",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#182949",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#5F5F5F",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#D7D3CC",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#19191933",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "typography": {
- "fontFamilies": [
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- },
- {
- "name": "Ysabeau Office",
- "slug": "ysabeau-office",
- "fontFamily": "\"Ysabeau Office\", sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "normal",
- "fontFamily": "\"Ysabeau Office\""
- },
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "italic",
- "fontFamily": "\"Ysabeau Office\""
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2rem",
- "min": "1.75rem"
- },
- "name": "Extra Large",
- "size": "1.75rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.6rem",
- "min": "1.4rem"
- },
- "name": "Extra Extra Large",
- "size": "2.6rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "letterSpacing": "-0.24px"
- },
- "blocks": {
- "core/code": {
- "color": {
- "text": "var:preset|color|contrast",
- "background": "var:preset|color|accent-5"
- }
- },
- "core/navigation": {
- "typography": {
- "fontSize": "1.25rem"
- }
- },
- "core/paragraph": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-author-name": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "900",
- "letterSpacing": "-0.96px"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "typography": {
- "fontSize": "var:preset|font-size|xx-large"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.14px"
- },
- "color": {
- "text": "var:preset|color|accent-4"
- }
- }
- }
- },
- "core/quote": {
- "elements": {
- "cite": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.14px"
- },
- "color": {
- "text": "var:preset|color|accent-4"
- }
- }
- }
- },
- "core/query-title": {
- "typography": {
- "fontWeight": "900"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "textTransform": "uppercase",
- "letterSpacing": "1.6px"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "900",
- "letterSpacing": "-0.36px"
- },
- "color": {
- "text": "var:preset|color|contrast",
- "background": "var:preset|color|accent-1"
- },
- "border": {
- "radius": "0px"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)",
- "text": "var:preset|color|contrast"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "900",
- "lineHeight": "1.2"
- }
- },
- "h5": {
- "typography": {
- "letterSpacing": "0px"
- }
- },
- "h6": {
- "typography": {
- "fontWeight": "900",
- "letterSpacing": "0px"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- },
- "elements": {
- "link": {
- "color": {
- "background": "var:preset|color|accent-5"
- },
- "border": {
- "radius": "100px",
- "color": "var:preset|color|accent-5"
- }
- }
- }
- },
- "section-2": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-3": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "heading": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)",
- "text": "var:preset|color|contrast"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "elements": {
- "heading": {
- "color": {
- "text": "var:preset|color|base"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/07-sunrise.json b/content/themes/twentytwentyfive/styles/07-sunrise.json
deleted file mode 100644
index fa5b100..0000000
--- a/content/themes/twentytwentyfive/styles/07-sunrise.json
+++ /dev/null
@@ -1,508 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Sunrise",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#330616",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#FFFFFF",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#F0FDA6",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#DB9AB1",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#C1E4E7",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#DB9AB1",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#4A1628",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#DB9AB133",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "typography": {
- "fontFamilies": [
- {
- "name": "Platypi",
- "slug": "platypi",
- "fontFamily": "Platypi",
- "fontFace": [
- {
- "fontFamily": "Platypi",
- "fontStyle": "normal",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
- ]
- },
- {
- "fontFamily": "Platypi",
- "fontStyle": "italic",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "1.5rem",
- "letterSpacing": "-0.24px",
- "lineHeight": "1.3"
- },
- "blocks": {
- "core/code": {
- "color": {
- "text": "var:preset|color|accent-2",
- "background": "var:preset|color|accent-5"
- }
- },
- "core/navigation": {
- "typography": {
- "fontSize": "1.25rem"
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "400"
- },
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "800",
- "letterSpacing": "-0.96px"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontSize": "var:preset|font-size|x-large",
- "letterSpacing": "-0.76px",
- "fontWeight": "800"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "400",
- "letterSpacing": "-0.14px"
- },
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/quote": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "typography": {
- "fontSize": "1.5rem",
- "fontWeight": "600",
- "letterSpacing": "-0.24px"
- },
- "elements": {
- "cite": {
- "typography": {
- "letterSpacing": "-0.14px"
- },
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontSize": "30px",
- "fontWeight": "800",
- "letterSpacing": "-0.6px"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "text": "var:preset|color|base",
- "background": "var:preset|color|accent-2"
- },
- "border": {
- "radius": "0px"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- },
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontSize": "1.5rem",
- "fontWeight": "800"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontWeight": "800"
- }
- },
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "typography": {
- "fontSize": "16px"
- },
- "elements": {
- "link": {
- "color": {
- "background": "var:preset|color|accent-5"
- },
- "border": {
- "radius": "100px",
- "color": "var:preset|color|accent-5"
- }
- }
- }
- },
- "section-1": {
- "color": {
- "text": "var:preset|color|accent-5",
- "background": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-2": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-3": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-5": {
- "color": {
- "text": "var:preset|color|contrast",
- "background": "var:preset|color|accent-5"
- },
- "elements": {
- "heading": {
- "color": {
- "text": "currentColor"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)",
- "text": "var:preset|color|base"
- }
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/08-midnight.json b/content/themes/twentytwentyfive/styles/08-midnight.json
deleted file mode 100644
index 9272d14..0000000
--- a/content/themes/twentytwentyfive/styles/08-midnight.json
+++ /dev/null
@@ -1,612 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Midnight",
- "settings": {
- "color": {
- "duotone": [
- {
- "colors": [
- "#4433A6",
- "#79F3B1"
- ],
- "name": "Midnight filter",
- "slug": "midnight-filter"
- }
- ],
- "palette": [
- {
- "color": "#4433A6",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#79F3B1",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#5644BC",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#372696",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#251D51",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#79F3B1",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#E8B7FF",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#79F3B133",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "typography": {
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.9rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.2rem",
- "min": "0.9rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.8rem",
- "min": "1.2rem"
- },
- "name": "Large",
- "size": "1.2rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2.2rem",
- "min": "1.8rem"
- },
- "name": "Extra Large",
- "size": "1.8rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.8rem",
- "min": "2rem"
- },
- "name": "Extra Extra Large",
- "size": "2rem",
- "slug": "xx-large"
- }
- ],
- "fontFamilies": [
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- },
- {
- "name": "Fira Sans",
- "slug": "fira-sans",
- "fontFamily": "\"Fira Sans\", sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Thin.woff2"
- ],
- "fontWeight": "100",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ThinItalic.woff2"
- ],
- "fontWeight": "100",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Italic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- }
- ]
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "fontFamily": "var:preset|font-family|fira-sans",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.5"
- },
- "blocks": {
- "core/avatar": {
- "filter": {
- "duotone": "var:preset|duotone|midnight-filter"
- }
- },
- "core/button": {
- "variations": {
- "outline": {
- "spacing": {
- "padding": {
- "bottom": "1rem",
- "left": "1rem",
- "right": "1rem",
- "top": "1rem"
- }
- }
- }
- }
- },
- "core/code": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|contrast"
- }
- },
- "core/cover": {
- "filter": {
- "duotone": "var:preset|duotone|midnight-filter"
- }
- },
- "core/image": {
- "filter": {
- "duotone": "var:preset|duotone|midnight-filter"
- }
- },
- "core/post-date": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-featured-image": {
- "filter": {
- "duotone": "var:preset|duotone|midnight-filter"
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "200"
- }
- },
- "core/pullquote": {
- "border": {
- "bottom": {
- "style": "none",
- "width": "0px"
- },
- "left": {
- "style": "none",
- "width": "0px"
- },
- "right": {
- "style": "none",
- "width": "0px"
- },
- "top": {
- "style": "none",
- "width": "0px"
- }
- },
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "200",
- "letterSpacing": "0em"
- }
- },
- "core/query-pagination": {
- "typography": {
- "fontWeight": "300",
- "letterSpacing": "0px"
- }
- },
- "core/quote": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.5",
- "fontWeight": "300"
- }
- },
- "core/search": {
- "border": {
- "radius": "0px"
- }
- },
- "core/site-logo": {
- "filter": {
- "duotone": "var:preset|duotone|midnight-filter"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|x-large",
- "fontWeight": "300",
- "letterSpacing": "-0.56px",
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "border": {
- "radius": "0px"
- },
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- "spacing": {
- "padding": {
- "bottom": "1rem",
- "left": "1rem",
- "right": "1rem",
- "top": "1rem"
- }
- },
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "400",
- "letterSpacing": "-0.01em",
- "textTransform": "uppercase"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)"
- }
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "200",
- "letterSpacing": "-0.02em",
- "lineHeight": "1.24"
- }
- },
- "h6": {
- "typography": {
- "fontWeight": "200"
- }
- }
- },
- "variations": {
- "section-1": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|accent-5"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-3) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|accent-5"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-5",
- "text": "var:preset|color|accent-3"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-5) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/blocks/01-display.json b/content/themes/twentytwentyfive/styles/blocks/01-display.json
deleted file mode 100644
index ff8eaae..0000000
--- a/content/themes/twentytwentyfive/styles/blocks/01-display.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Display",
- "slug": "text-display",
- "blockTypes": ["core/heading", "core/paragraph"],
- "styles": {
- "typography": {
- "fontSize": "clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 1.333), 3.5rem)",
- "lineHeight": "1.2"
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/blocks/02-subtitle.json b/content/themes/twentytwentyfive/styles/blocks/02-subtitle.json
deleted file mode 100644
index bd9640c..0000000
--- a/content/themes/twentytwentyfive/styles/blocks/02-subtitle.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Subtitle",
- "slug": "text-subtitle",
- "blockTypes": ["core/heading", "core/paragraph"],
- "styles": {
- "typography": {
- "fontSize": "clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.392), 1.75rem)",
- "lineHeight": "1.2"
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/blocks/03-annotation.json b/content/themes/twentytwentyfive/styles/blocks/03-annotation.json
deleted file mode 100644
index 41391e3..0000000
--- a/content/themes/twentytwentyfive/styles/blocks/03-annotation.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Annotation",
- "slug": "text-annotation",
- "blockTypes": ["core/heading", "core/paragraph"],
- "styles": {
- "css": "width: fit-content",
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "lineHeight": "1.5",
- "letterSpacing": "normal"
- },
- "border": {
- "color": "currentColor",
- "style": "solid",
- "width": "1px",
- "radius": "16px"
- },
- "spacing": {
- "padding": {
- "top": "0.2rem",
- "right": "0.6rem",
- "bottom": "0.25rem",
- "left": "0.6rem"
- }
- },
- "elements": {
- "link": {
- "typography": {
- "textDecoration": "none"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/blocks/post-terms-1.json b/content/themes/twentytwentyfive/styles/blocks/post-terms-1.json
deleted file mode 100644
index 5995fbb..0000000
--- a/content/themes/twentytwentyfive/styles/blocks/post-terms-1.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Pill shaped",
- "slug": "post-terms-1",
- "blockTypes": ["core/post-terms"],
- "styles": {
- "elements": {
- "link": {
- "border": {
- "color": "var:preset|color|accent-6",
- "radius": "20px",
- "width": "0.8px",
- "style": "solid"
- },
- "spacing": {
- "padding": {
- "top": "5px",
- "right": "10px",
- "bottom": "5px",
- "left": "10px"
- }
- },
- "typography": {
- "fontWeight": "400",
- "lineHeight": "2.8",
- "textDecoration": "none"
- },
- ":hover": {
- "typography": {
- "textDecoration": "underline"
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/01-evening.json b/content/themes/twentytwentyfive/styles/colors/01-evening.json
deleted file mode 100644
index 56c88fb..0000000
--- a/content/themes/twentytwentyfive/styles/colors/01-evening.json
+++ /dev/null
@@ -1,102 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Evening",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#1B1B1B",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#F0F0F0",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#786D0A",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#442369",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#D1D0EA",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#CBCBCB",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#353535",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#FFFFFF33",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)",
- "text": "var:preset|color|base"
- }
- }
- }
- },
- "variations": {
- "section-2": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/02-noon.json b/content/themes/twentytwentyfive/styles/colors/02-noon.json
deleted file mode 100644
index 97b12a5..0000000
--- a/content/themes/twentytwentyfive/styles/colors/02-noon.json
+++ /dev/null
@@ -1,167 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Noon",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#F8F7F5",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#191919",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#FFFFFF",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#F5B684",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#191919",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#5F5F5F",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#F1EEE9",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#19191933",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "blocks": {
- "core/button": {
- "border": {
- "color": "var:preset|color|contrast"
- }
- },
- "core/post-title": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/query-title": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "variations": {
- "section-4": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- },
- "heading": {
- "color": {
- "text": "currentColor"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|base"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/03-dusk.json b/content/themes/twentytwentyfive/styles/colors/03-dusk.json
deleted file mode 100644
index 705c827..0000000
--- a/content/themes/twentytwentyfive/styles/colors/03-dusk.json
+++ /dev/null
@@ -1,276 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Dusk",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#E2E2E2",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#3B3B3B",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#F5EDFF",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#650DD4",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#191919",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#5F5F5F",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#DBDBDB",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#3B3B3B33",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "custom": {
- "color": {
- "accent-2-opacity-20": "#650DD433"
- }
- }
- },
- "styles": {
- "blocks": {
- "core/code": {
- "color": {
- "text": "var:preset|color|black",
- "background": "var:preset|color|accent-5"
- }
- },
- "core/paragraph": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-title": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|black"
- },
- "elements": {
- "cite": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/quote": {
- "color": {
- "text": "var:preset|color|black"
- }
- },
- "core/site-title": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "text": "var:preset|color|base",
- "background": "var:preset|color|accent-2"
- },
- "border": {
- "color": "transparent"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- },
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "elements": {
- "link": {
- "border": {
- "color": "var:custom|color|accent-2-opacity-20"
- }
- }
- }
- },
- "section-1": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-3"
- }
- }
- }
- },
- "section-2": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-3) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "heading": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-3": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "heading": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- "color": {
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "text": "var:preset|color|base"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "heading": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)",
- "text": "var:preset|color|base"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|base"
- }
- },
- "link": {
- "color": {
- "text": "var:preset|color|base"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/04-afternoon.json b/content/themes/twentytwentyfive/styles/colors/04-afternoon.json
deleted file mode 100644
index 60da749..0000000
--- a/content/themes/twentytwentyfive/styles/colors/04-afternoon.json
+++ /dev/null
@@ -1,105 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Afternoon",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#DAE7BD",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#516028",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#C7F642",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#EBF6D3",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#303D10",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#516028",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#EBF6D3",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#51602833",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, black)"
- }
- }
- }
- },
- "variations": {
- "section-2": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|accent-1"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|accent-3"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-5": {
- "elements": {
- "button": {
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 90%, transparent)"
- }
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/05-twilight.json b/content/themes/twentytwentyfive/styles/colors/05-twilight.json
deleted file mode 100644
index 329164d..0000000
--- a/content/themes/twentytwentyfive/styles/colors/05-twilight.json
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Twilight",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#131313",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#FFFFFF",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#4B52FF",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#FF7A5C",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#252525",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#FFFFFF",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#252525",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#FFFFFF33",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "variations": {
- "section-2": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|accent-2"
- },
- ":hover": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/06-morning.json b/content/themes/twentytwentyfive/styles/colors/06-morning.json
deleted file mode 100644
index 4330045..0000000
--- a/content/themes/twentytwentyfive/styles/colors/06-morning.json
+++ /dev/null
@@ -1,234 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Morning",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#DFDCD7",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#191919",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#7A9BDB",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#F7E6FF",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#182949",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#5F5F5F",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#D7D3CC",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#19191933",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "blocks": {
- "core/code": {
- "color": {
- "text": "var:preset|color|contrast",
- "background": "var:preset|color|accent-5"
- }
- },
- "core/paragraph": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-author-name": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-title": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "cite": {
- "color": {
- "text": "var:preset|color|accent-4"
- }
- }
- }
- },
- "core/quote": {
- "elements": {
- "cite": {
- "color": {
- "text": "var:preset|color|accent-4"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "text": "var:preset|color|contrast",
- "background": "var:preset|color|accent-1"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)",
- "text": "var:preset|color|contrast"
- }
- }
- },
- "heading": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "elements": {
- "link": {
- "color": {
- "background": "var:preset|color|accent-5"
- },
- "border": {
- "color": "var:preset|color|accent-5"
- }
- }
- }
- },
- "section-2": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-3": {
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "heading": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)",
- "text": "var:preset|color|contrast"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-5": {
- "elements": {
- "heading": {
- "color": {
- "text": "var:preset|color|base"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-1) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/07-sunrise.json b/content/themes/twentytwentyfive/styles/colors/07-sunrise.json
deleted file mode 100644
index ee39df9..0000000
--- a/content/themes/twentytwentyfive/styles/colors/07-sunrise.json
+++ /dev/null
@@ -1,285 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Sunrise",
- "settings": {
- "color": {
- "palette": [
- {
- "color": "#330616",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#FFFFFF",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#F0FDA6",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#DB9AB1",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#C1E4E7",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#DB9AB1",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#4A1628",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#DB9AB133",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "blocks": {
- "core/code": {
- "color": {
- "text": "var:preset|color|accent-2",
- "background": "var:preset|color|accent-5"
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/post-title": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "cite": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/quote": {
- "color": {
- "text": "var:preset|color|accent-2"
- },
- "elements": {
- "cite": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- },
- "core/site-title": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-2"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "text": "var:preset|color|base",
- "background": "var:preset|color|accent-2"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "elements": {
- "link": {
- "color": {
- "background": "var:preset|color|accent-5"
- },
- "border": {
- "color": "var:preset|color|accent-5"
- }
- }
- }
- },
- "section-1": {
- "color": {
- "text": "var:preset|color|accent-5",
- "background": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-2": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-3": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|base"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 85%, transparent)"
- }
- }
- }
- }
- },
- "section-5": {
- "color": {
- "text": "var:preset|color|contrast",
- "background": "var:preset|color|accent-5"
- },
- "elements": {
- "heading": {
- "color": {
- "text": "currentColor"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- },
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)",
- "text": "var:preset|color|base"
- }
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/colors/08-midnight.json b/content/themes/twentytwentyfive/styles/colors/08-midnight.json
deleted file mode 100644
index c995e2e..0000000
--- a/content/themes/twentytwentyfive/styles/colors/08-midnight.json
+++ /dev/null
@@ -1,144 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "title": "Midnight",
- "settings": {
- "color": {
- "duotone": [
- {
- "colors": [
- "#4433A6",
- "#79F3B1"
- ],
- "name": "Midnight filter",
- "slug": "midnight-filter"
- }
- ],
- "palette": [
- {
- "color": "#4433A6",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#79F3B1",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#5644BC",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#372696",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#251D51",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#79F3B1",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#E8B7FF",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "#79F3B133",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- }
- },
- "styles": {
- "blocks": {
- "core/code": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|contrast"
- }
- },
- "core/post-date": {
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)"
- }
- }
- }
- },
- "variations": {
- "section-1": {
- "color": {
- "text": "var:preset|color|accent-3"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|accent-5"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-3) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "section-4": {
- "color": {
- "text": "var:preset|color|accent-5"
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-5",
- "text": "var:preset|color|accent-3"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-5) 85%, transparent)"
- }
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/sections/section-1.json b/content/themes/twentytwentyfive/styles/sections/section-1.json
deleted file mode 100644
index 642f3b2..0000000
--- a/content/themes/twentytwentyfive/styles/sections/section-1.json
+++ /dev/null
@@ -1,130 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "slug": "section-1",
- "title": "Style 1",
- "blockTypes": [
- "core/group",
- "core/columns",
- "core/column"
- ],
- "styles": {
- "color": {
- "background": "var:preset|color|accent-5",
- "text": "var:preset|color|contrast"
- },
- "blocks": {
- "core/separator": {
- "color": {
- "text": "color-mix(in srgb, currentColor 25%, transparent)"
- }
- },
- "core/site-title": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-date": {
- "color":{
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- },
- "elements": {
- "link": {
- "color" : {
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-date": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-edit-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-reply-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "currentColor"
- }
- },
- "core/quote": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/sections/section-2.json b/content/themes/twentytwentyfive/styles/sections/section-2.json
deleted file mode 100644
index 81459c0..0000000
--- a/content/themes/twentytwentyfive/styles/sections/section-2.json
+++ /dev/null
@@ -1,118 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "slug": "section-2",
- "title": "Style 2",
- "blockTypes": [
- "core/group",
- "core/columns",
- "core/column"
- ],
- "styles": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|contrast"
- },
- "blocks": {
- "core/separator": {
- "color": {
- "text": "color-mix(in srgb, currentColor 25%, transparent)"
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-date": {
- "color":{
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- },
- "elements": {
- "link": {
- "color" : {
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-date": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-edit-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-reply-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "currentColor"
- }
- },
- "core/quote": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/sections/section-3.json b/content/themes/twentytwentyfive/styles/sections/section-3.json
deleted file mode 100644
index 3d1c0a6..0000000
--- a/content/themes/twentytwentyfive/styles/sections/section-3.json
+++ /dev/null
@@ -1,118 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "slug": "section-3",
- "title": "Style 3",
- "blockTypes": [
- "core/group",
- "core/columns",
- "core/column"
- ],
- "styles": {
- "color": {
- "background": "var:preset|color|accent-1",
- "text": "var:preset|color|contrast"
- },
- "blocks": {
- "core/separator": {
- "color": {
- "text": "color-mix(in srgb, currentColor 25%, transparent)"
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-date": {
- "color":{
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- },
- "elements": {
- "link": {
- "color" : {
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-date": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-edit-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-reply-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "currentColor"
- }
- },
- "core/quote": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/sections/section-4.json b/content/themes/twentytwentyfive/styles/sections/section-4.json
deleted file mode 100644
index 226779b..0000000
--- a/content/themes/twentytwentyfive/styles/sections/section-4.json
+++ /dev/null
@@ -1,132 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "slug": "section-4",
- "title": "Style 4",
- "blockTypes": [
- "core/group",
- "core/columns",
- "core/column"
- ],
- "styles": {
- "color": {
- "background": "var:preset|color|accent-3",
- "text": "var:preset|color|accent-2"
- },
- "blocks": {
- "core/separator": {
- "color": {
- "text": "color-mix(in srgb, currentColor 25%, transparent)"
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-date": {
- "color":{
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- },
- "elements": {
- "link": {
- "color" : {
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-date": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-edit-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-reply-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "currentColor"
- }
- },
- "core/quote": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|accent-2",
- "text": "var:preset|color|accent-3"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)",
- "text": "var:preset|color|accent-3"
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/sections/section-5.json b/content/themes/twentytwentyfive/styles/sections/section-5.json
deleted file mode 100644
index c9b37a8..0000000
--- a/content/themes/twentytwentyfive/styles/sections/section-5.json
+++ /dev/null
@@ -1,132 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "slug": "section-5",
- "title": "Style 5",
- "blockTypes": [
- "core/group",
- "core/columns",
- "core/column"
- ],
- "styles": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- "blocks": {
- "core/separator": {
- "color": {
- "text": "color-mix(in srgb, currentColor 25%, transparent)"
- }
- },
- "core/post-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/post-date": {
- "color":{
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- },
- "elements": {
- "link": {
- "color" : {
- "text": "color-mix(in srgb, currentColor 85%, transparent)"
- }
- }
- }
- },
- "core/post-terms": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-author-name": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-date": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-edit-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/comment-reply-link": {
- "color": {
- "text": "currentColor"
- },
- "elements": {
- "link": {
- "color": {
- "text": "currentColor"
- }
- }
- }
- },
- "core/pullquote": {
- "color": {
- "text": "currentColor"
- }
- },
- "core/quote": {
- "color": {
- "text": "currentColor"
- }
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)",
- "text": "var:preset|color|contrast"
- }
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-1.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-1.json
deleted file mode 100644
index ad6c6cd..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-1.json
+++ /dev/null
@@ -1,292 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Beiruti & Literata",
- "slug": "typography-preset-1",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Beiruti",
- "slug": "beiruti",
- "fontFamily": "Beiruti, sans-serif",
- "fontFace": [
- {
- "fontFamily": "Beiruti",
- "fontStyle": "normal",
- "fontWeight": "200 900",
- "src": [
- "file:./assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.9rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.2rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.8rem",
- "min": "1.6rem"
- },
- "name": "Large",
- "size": "1.6rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2.2rem",
- "min": "1.8em"
- },
- "name": "Extra Large",
- "size": "1.8rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.8rem",
- "min": "2rem"
- },
- "name": "Extra Extra Large",
- "size": "2rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.6"
- },
- "blocks": {
- "core/button": {
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti"
- }
- },
- "core/list": {
- "typography": {
- "lineHeight": "1.3"
- }
- },
- "core/loginout": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti",
- "fontWeight": "500",
- "lineHeight": "1"
- }
- },
- "core/quote": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/query-pagination": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/site-tagline": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti",
- "fontWeight": "600",
- "letterSpacing": "2.4px",
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "h4": {
- "typography": {
- "fontSize": "var:preset|font-size|large"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "0px"
- }
- },
- "h6": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|beiruti",
- "fontWeight": "500",
- "letterSpacing": "-0.02em",
- "lineHeight": "1.02"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-2.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-2.json
deleted file mode 100644
index e3e26b3..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-2.json
+++ /dev/null
@@ -1,150 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Vollkorn & Fira Code",
- "slug": "typography-preset-2",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Vollkorn",
- "slug": "vollkorn",
- "fontFamily": "Vollkorn, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2"
- ],
- "fontWeight": "400 900",
- "fontStyle": "italic",
- "fontFamily": "Vollkorn"
- },
- {
- "src": [
- "file:./assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2"
- ],
- "fontWeight": "400 900",
- "fontStyle": "normal",
- "fontFamily": "Vollkorn"
- }
- ]
- },
- {
- "name": "Fira Code",
- "slug": "fira-code",
- "fontFamily": "\"Fira Code\", monospace",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
- ],
- "fontWeight": "300 700",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Code\""
- }
- ]
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.18px",
- "lineHeight": "1.5"
- },
- "blocks": {
- "core/post-author-name": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "400",
- "letterSpacing": "-0.96px"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|vollkorn",
- "fontSize": "var:preset|font-size|x-large",
- "fontWeight": "400"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontWeight": "300",
- "letterSpacing": "-0.14px"
- }
- }
- }
- },
- "core/quote": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontWeight": "500",
- "letterSpacing": "-0.18px"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|vollkorn",
- "fontSize": "var:preset|font-size|x-large"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "400",
- "letterSpacing": "-0.36px"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|vollkorn"
- }
- },
- "h1": {
- "typography": {
- "fontSize": "48px",
- "letterSpacing": "-0.96px;"
- }
- },
- "h2": {
- "typography": {
- "fontSize": "38px",
- "letterSpacing": "-0.96px"
- }
- },
- "h3": {
- "typography": {
- "fontSize": "32px",
- "letterSpacing": "-0.64px"
- }
- },
- "h4": {
- "typography": {
- "fontSize": "28px",
- "letterSpacing": "-0.56px"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "24px",
- "letterSpacing": "-0.48px"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-3.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-3.json
deleted file mode 100644
index 6d64153..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-3.json
+++ /dev/null
@@ -1,186 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Platypi & Ysabeau Office",
- "slug": "typography-preset-3",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Platypi",
- "slug": "platypi",
- "fontFamily": "Platypi",
- "fontFace": [
- {
- "fontFamily": "Platypi",
- "fontStyle": "normal",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
- ]
- },
- {
- "fontFamily": "Platypi",
- "fontStyle": "italic",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Ysabeau Office",
- "slug": "ysabeau-office",
- "fontFamily": "\"Ysabeau Office\", sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "normal",
- "fontFamily": "\"Ysabeau Office\""
- },
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "italic",
- "fontFamily": "\"Ysabeau Office\""
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "1.8rem",
- "min": "1.4rem"
- },
- "name": "Extra Large",
- "size": "1.4rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.6rem",
- "min": "2rem"
- },
- "name": "Extra Extra Large",
- "size": "2rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "letterSpacing": "-0.22px",
- "lineHeight": "1.5"
- },
- "blocks":{
- "core/code": {
- "typography": {
- "letterSpacing": "0px"
- }
- },
- "core/heading": {
- "typography": {
- "lineHeight": "1.2"
- }
- },
- "core/list": {
- "typography": {
- "lineHeight": "1.3"
- }
- },
- "core/loginout": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "400"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.1"
- }
- },
- "core/quote": {
- "typography": {
- "fontWeight": "300"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "fontSize": "var:preset|font-size|large",
- "letterSpacing": "1.44px",
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "fontWeight": "600",
- "letterSpacing": "1.44px",
- "textTransform": "uppercase"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "normal"
- }
- },
- "h6": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "fontWeight": "400",
- "fontStyle": "initial",
- "letterSpacing": "initial",
- "textTransform": "initial"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-4.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-4.json
deleted file mode 100644
index 62a6362..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-4.json
+++ /dev/null
@@ -1,154 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Roboto Slab & Manrope",
- "slug": "typography-preset-4",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Roboto Slab",
- "slug": "roboto-slab",
- "fontFamily": "\"Roboto Slab\", serif",
- "fontFace": [
- {
- "fontFamily": "\"Roboto Slab\"",
- "fontStyle": "normal",
- "fontWeight": "100 900",
- "src": [
- "file:./assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Manrope",
- "slug": "manrope",
- "fontFamily": "Manrope, sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
- ],
- "fontWeight": "200 800",
- "fontStyle": "normal",
- "fontFamily": "Manrope"
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2rem",
- "min": "1.75rem"
- },
- "name": "Extra Large",
- "size": "1.75rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.4rem",
- "min": "2.15rem"
- },
- "name": "Extra Extra Large",
- "size": "2.15rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "letterSpacing": "0"
- },
- "blocks": {
- "core/navigation": {
- "typography": {
- "fontSize": "var:preset|font-size|large",
- "letterSpacing": "-0.28px",
- "textTransform": "uppercase"
- }
- },
- "core/post-author": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/post-author-name": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "500"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|roboto-slab",
- "fontSize": "var:preset|font-size|xx-large",
- "fontWeight": "200"
- }
- },
- "core/search": {
- "typography": {
- "textTransform": "uppercase"
- }
- },
- "core/site-tagline": {
- "typography": {
- "fontSize": "var:preset|font-size|large"
- }
- },
- "core/site-title": {
- "typography": {
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontWeight": "500",
- "letterSpacing": "-0.36px",
- "textTransform": "uppercase"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|roboto-slab",
- "fontWeight": "300",
- "letterSpacing": "-0.5px",
- "lineHeight": "1.2"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-5.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-5.json
deleted file mode 100644
index e30d03e..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-5.json
+++ /dev/null
@@ -1,303 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Literata & Ysabeau Office",
- "slug": "typography-preset-5",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- },
- {
- "name": "Ysabeau Office",
- "slug": "ysabeau-office",
- "fontFamily": "\"Ysabeau Office\", sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "normal",
- "fontFamily": "\"Ysabeau Office\""
- },
- {
- "src": [
- "file:./assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2"
- ],
- "fontWeight": "100 900",
- "fontStyle": "italic",
- "fontFamily": "\"Ysabeau Office\""
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2rem",
- "min": "1.75rem"
- },
- "name": "Extra Large",
- "size": "1.75rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.6rem",
- "min": "1.4rem"
- },
- "name": "Extra Extra Large",
- "size": "2.6rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "letterSpacing": "-0.24px"
- },
- "blocks": {
- "core/navigation": {
- "typography": {
- "fontSize": "1.25rem"
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "900",
- "letterSpacing": "-0.96px"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontSize": "var:preset|font-size|xx-large"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.14px"
- }
- }
- }
- },
- "core/quote": {
- "elements": {
- "cite": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.14px"
- }
- }
- }
- },
- "core/query-title": {
- "typography": {
- "fontWeight": "900"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|ysabeau-office",
- "textTransform": "uppercase",
- "letterSpacing": "1.6px"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "900",
- "letterSpacing": "-0.36px"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "900",
- "lineHeight": "1.2"
- }
- },
- "h5": {
- "typography": {
- "letterSpacing": "0px"
- }
- },
- "h6": {
- "typography": {
- "fontWeight": "900",
- "letterSpacing": "0px"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-6.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-6.json
deleted file mode 100644
index d9eb663..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-6.json
+++ /dev/null
@@ -1,257 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Platypi & Literata",
- "slug": "typography-preset-6",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Platypi",
- "slug": "platypi",
- "fontFamily": "Platypi",
- "fontFace": [
- {
- "fontFamily": "Platypi",
- "fontStyle": "normal",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-VariableFont_wght.woff2"
- ]
- },
- {
- "fontFamily": "Platypi",
- "fontStyle": "italic",
- "fontWeight": "300 800",
- "src": [
- "file:./assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2"
- ]
- }
- ]
- },
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "1.5rem",
- "letterSpacing": "-0.24px",
- "lineHeight": "1.3"
- },
- "blocks": {
- "core/navigation": {
- "typography": {
- "fontSize": "1.25rem"
- }
- },
- "core/post-terms": {
- "typography": {
- "fontWeight": "400"
- }
- },
- "core/post-title": {
- "typography": {
- "fontWeight": "800",
- "letterSpacing": "-0.96px"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontSize": "var:preset|font-size|x-large",
- "letterSpacing": "-0.76px",
- "fontWeight": "800"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "400",
- "letterSpacing": "-0.14px"
- }
- }
- }
- },
- "core/quote": {
- "typography": {
- "fontSize": "1.5rem",
- "fontWeight": "600",
- "letterSpacing": "-0.24px"
- },
- "elements": {
- "cite": {
- "typography": {
- "letterSpacing": "-0.14px"
- }
- }
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontSize": "30px",
- "fontWeight": "800",
- "letterSpacing": "-0.6px"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontSize": "1.5rem",
- "fontWeight": "800"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|platypi",
- "fontWeight": "800"
- }
- }
- },
- "variations": {
- "post-terms-1": {
- "typography": {
- "fontSize": "16px"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/styles/typography/typography-preset-7.json b/content/themes/twentytwentyfive/styles/typography/typography-preset-7.json
deleted file mode 100644
index 69b1740..0000000
--- a/content/themes/twentytwentyfive/styles/typography/typography-preset-7.json
+++ /dev/null
@@ -1,411 +0,0 @@
-{
- "version": 3,
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "title": "Literata & Fira Sans",
- "slug": "typography-preset-7",
- "settings": {
- "typography": {
- "fontFamilies": [
- {
- "name": "Literata",
- "slug": "literata",
- "fontFamily": "Literata, serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-RegularItalic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "Literata"
- },
- {
- "src": [
- "file:./assets/fonts/literata/Literata72pt-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "Literata"
- }
- ]
- },
- {
- "name": "Fira Sans",
- "slug": "fira-sans",
- "fontFamily": "\"Fira Sans\", sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Thin.woff2"
- ],
- "fontWeight": "100",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ThinItalic.woff2"
- ],
- "fontWeight": "100",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraLight.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2"
- ],
- "fontWeight": "200",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Light.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-LightItalic.woff2"
- ],
- "fontWeight": "300",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Italic.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Regular.woff2"
- ],
- "fontWeight": "400",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Medium.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-MediumItalic.woff2"
- ],
- "fontWeight": "500",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-SemiBold.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2"
- ],
- "fontWeight": "600",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Bold.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-BoldItalic.woff2"
- ],
- "fontWeight": "700",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraBold.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2"
- ],
- "fontWeight": "800",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-Black.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Sans\""
- },
- {
- "src": [
- "file:./assets/fonts/fira-sans/FiraSans-BlackItalic.woff2"
- ],
- "fontWeight": "900",
- "fontStyle": "italic",
- "fontFamily": "\"Fira Sans\""
- }
- ]
- }
- ],
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.9rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.2rem",
- "min": "0.9rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.8rem",
- "min": "1.2rem"
- },
- "name": "Large",
- "size": "1.2rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2.2rem",
- "min": "1.8rem"
- },
- "name": "Extra Large",
- "size": "1.8rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "2.8rem",
- "min": "2rem"
- },
- "name": "Extra Extra Large",
- "size": "2rem",
- "slug": "xx-large"
- }
- ]
- }
- },
- "styles": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "fontFamily": "var:preset|font-family|fira-sans",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.5"
- },
- "blocks": {
- "core/post-title": {
- "typography": {
- "fontWeight": "200"
- }
- },
- "core/pullquote": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "200",
- "letterSpacing": "0em"
- }
- },
- "core/query-pagination": {
- "typography": {
- "fontWeight": "300",
- "letterSpacing": "0px"
- }
- },
- "core/quote": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "letterSpacing": "-0.01em",
- "lineHeight": "1.5",
- "fontWeight": "300"
- }
- },
- "core/site-title": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|x-large",
- "fontWeight": "300",
- "letterSpacing": "-0.56px",
- "textTransform": "uppercase"
- }
- }
- },
- "elements": {
- "button": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "400",
- "letterSpacing": "-0.01em",
- "textTransform": "uppercase"
- }
- },
- "heading": {
- "typography": {
- "fontFamily": "var:preset|font-family|literata",
- "fontWeight": "200",
- "letterSpacing": "-0.02em",
- "lineHeight": "1.24"
- }
- },
- "h6": {
- "typography": {
- "fontWeight": "200"
- }
- }
- }
- }
-}
diff --git a/content/themes/twentytwentyfive/templates/404.html b/content/themes/twentytwentyfive/templates/404.html
deleted file mode 100644
index 379f83d..0000000
--- a/content/themes/twentytwentyfive/templates/404.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/archive.html b/content/themes/twentytwentyfive/templates/archive.html
deleted file mode 100644
index 3b0ddbe..0000000
--- a/content/themes/twentytwentyfive/templates/archive.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/home.html b/content/themes/twentytwentyfive/templates/home.html
deleted file mode 100644
index ae6870c..0000000
--- a/content/themes/twentytwentyfive/templates/home.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/index.html b/content/themes/twentytwentyfive/templates/index.html
deleted file mode 100644
index ae6870c..0000000
--- a/content/themes/twentytwentyfive/templates/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/page-no-title.html b/content/themes/twentytwentyfive/templates/page-no-title.html
deleted file mode 100644
index 17e4781..0000000
--- a/content/themes/twentytwentyfive/templates/page-no-title.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/page.html b/content/themes/twentytwentyfive/templates/page.html
deleted file mode 100644
index 4331194..0000000
--- a/content/themes/twentytwentyfive/templates/page.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/search.html b/content/themes/twentytwentyfive/templates/search.html
deleted file mode 100644
index 3ccff6f..0000000
--- a/content/themes/twentytwentyfive/templates/search.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/templates/single.html b/content/themes/twentytwentyfive/templates/single.html
deleted file mode 100644
index 90b7fb2..0000000
--- a/content/themes/twentytwentyfive/templates/single.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/content/themes/twentytwentyfive/theme.json b/content/themes/twentytwentyfive/theme.json
deleted file mode 100644
index 7daeb0d..0000000
--- a/content/themes/twentytwentyfive/theme.json
+++ /dev/null
@@ -1,733 +0,0 @@
-{
- "$schema": "https://schemas.wp.org/wp/6.7/theme.json",
- "version": 3,
- "settings": {
- "appearanceTools": true,
- "color": {
- "defaultDuotone": false,
- "defaultGradients": false,
- "defaultPalette": false,
- "palette": [
- {
- "color": "#FFFFFF",
- "name": "Base",
- "slug": "base"
- },
- {
- "color": "#111111",
- "name": "Contrast",
- "slug": "contrast"
- },
- {
- "color": "#FFEE58",
- "name": "Accent 1",
- "slug": "accent-1"
- },
- {
- "color": "#F6CFF4",
- "name": "Accent 2",
- "slug": "accent-2"
- },
- {
- "color": "#503AA8",
- "name": "Accent 3",
- "slug": "accent-3"
- },
- {
- "color": "#686868",
- "name": "Accent 4",
- "slug": "accent-4"
- },
- {
- "color": "#FBFAF3",
- "name": "Accent 5",
- "slug": "accent-5"
- },
- {
- "color": "color-mix(in srgb, currentColor 20%, transparent)",
- "name": "Accent 6",
- "slug": "accent-6"
- }
- ]
- },
- "layout": {
- "contentSize": "645px",
- "wideSize": "1340px"
- },
- "spacing": {
- "defaultSpacingSizes": false,
- "spacingSizes": [
- {
- "name": "Tiny",
- "size": "10px",
- "slug": "20"
- },
- {
- "name": "X-Small",
- "size": "20px",
- "slug": "30"
- },
- {
- "name": "Small",
- "size": "30px",
- "slug": "40"
- },
- {
- "name": "Regular",
- "size": "clamp(30px, 5vw, 50px)",
- "slug": "50"
- },
- {
- "name": "Large",
- "size": "clamp(30px, 7vw, 70px)",
- "slug": "60"
- },
- {
- "name": "X-Large",
- "size": "clamp(50px, 7vw, 90px)",
- "slug": "70"
- },
- {
- "name": "XX-Large",
- "size": "clamp(70px, 10vw, 140px)",
- "slug": "80"
- }
- ],
- "units": [
- "%",
- "px",
- "em",
- "rem",
- "vh",
- "vw"
- ]
- },
- "typography": {
- "writingMode": true,
- "defaultFontSizes": false,
- "fluid": true,
- "fontSizes": [
- {
- "fluid": false,
- "name": "Small",
- "size": "0.875rem",
- "slug": "small"
- },
- {
- "fluid": {
- "max": "1.125rem",
- "min": "1rem"
- },
- "name": "Medium",
- "size": "1rem",
- "slug": "medium"
- },
- {
- "fluid": {
- "max": "1.375rem",
- "min": "1.125rem"
- },
- "name": "Large",
- "size": "1.38rem",
- "slug": "large"
- },
- {
- "fluid": {
- "max": "2rem",
- "min": "1.75rem"
- },
- "name": "Extra Large",
- "size": "1.75rem",
- "slug": "x-large"
- },
- {
- "fluid": {
- "max": "3rem",
- "min": "2.15rem"
- },
- "name": "Extra Extra Large",
- "size": "2.15rem",
- "slug": "xx-large"
- }
- ],
- "fontFamilies": [
- {
- "name": "Manrope",
- "slug": "manrope",
- "fontFamily": "Manrope, sans-serif",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2"
- ],
- "fontWeight": "200 800",
- "fontStyle": "normal",
- "fontFamily": "Manrope"
- }
- ]
- },
- {
- "name": "Fira Code",
- "slug": "fira-code",
- "fontFamily": "\"Fira Code\", monospace",
- "fontFace": [
- {
- "src": [
- "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2"
- ],
- "fontWeight": "300 700",
- "fontStyle": "normal",
- "fontFamily": "\"Fira Code\""
- }
- ]
- }
- ]
- },
- "useRootPaddingAwareAlignments": true
- },
- "styles": {
- "color": {
- "background": "var:preset|color|base",
- "text": "var:preset|color|contrast"
- },
- "spacing": {
- "blockGap": "1.2rem",
- "padding": {
- "left": "var:preset|spacing|50",
- "right": "var:preset|spacing|50"
- }
- },
- "typography": {
- "fontFamily": "var:preset|font-family|manrope",
- "fontSize": "var:preset|font-size|large",
- "fontWeight": "300",
- "letterSpacing": "-0.1px",
- "lineHeight": "1.4"
- },
- "blocks": {
- "core/avatar": {
- "border": {
- "radius": "100px"
- }
- },
- "core/button": {
- "variations": {
- "outline": {
- "border": {
- "color": "currentColor",
- "width": "1px"
- },
- "css": ".wp-block-button__link:not(.has-background):hover {background-color:color-mix(in srgb, var(--wp--preset--color--contrast) 5%, transparent);}",
- "spacing": {
- "padding": {
- "bottom": "calc(1rem - 1px)",
- "left": "calc(2.25rem - 1px)",
- "right": "calc(2.25rem - 1px)",
- "top": "calc(1rem - 1px)"
- }
- }
- }
- }
- },
- "core/columns": {
- "spacing": {
- "blockGap": "var:preset|spacing|50"
- }
- },
- "core/buttons": {
- "spacing": {
- "blockGap": "16px"
- }
- },
- "core/code": {
- "typography": {
- "fontFamily": "var:preset|font-family|fira-code",
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "300"
- },
- "color": {
- "background": "var:preset|color|accent-5",
- "text": "var:preset|color|contrast"
- },
- "spacing": {
- "padding": {
- "right": "var:preset|spacing|40",
- "bottom": "var:preset|spacing|40",
- "left": "var:preset|spacing|40",
- "top": "var:preset|spacing|40"
- }
- }
- },
- "core/comment-author-name": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|accent-4"
- },
- "typography": {
- "textDecoration": "none"
- },
- ":hover": {
- "typography": {
- "textDecoration": "underline"
- }
- }
- }
- },
- "typography": {
- "fontSize": "var:preset|font-size|small"
- },
- "spacing": {
- "margin": {
- "top": "5px",
- "bottom": "0px"
- }
- }
- },
- "core/comment-content": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- },
- "spacing": {
- "margin": {
- "top": "var:preset|spacing|30",
- "bottom": "var:preset|spacing|30"
- }
- }
- },
- "core/comment-date": {
- "typography": {
- "fontSize": "var:preset|font-size|small"
- },
- "color": {
- "text": "var:preset|color|contrast"
- },
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- }
- },
- "core/comment-edit-link": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- },
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/comment-reply-link": {
- "elements": {
- "link": {
- "color": {
- "text": "var:preset|color|contrast"
- }
- }
- },
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/post-comments-form": {
- "css": "& textarea, input:not([type=submit]){border-radius:.25rem; border-color: var(--wp--preset--color--accent-6) !important;} & input[type=checkbox]{margin:0 .2rem 0 0 !important;} & label {font-size: var(--wp--preset--font-size--small); }",
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- },
- "spacing": {
- "padding": {
- "top": "var:preset|spacing|40",
- "bottom": "var:preset|spacing|40"
- }
- }
- },
- "core/comments-pagination": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- },
- "spacing": {
- "margin": {
- "top": "var:preset|spacing|40",
- "bottom": "var:preset|spacing|40"
- }
- }
- },
- "core/comments-pagination-next": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/comments-pagination-numbers": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/comments-pagination-previous": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/post-date": {
- "color":{
- "text": "var:preset|color|accent-4"
- },
- "elements": {
- "link": {
- "color" : {
- "text": "var:preset|color|accent-4"
- },
- ":hover": {
- "typography": {
- "textDecoration": "underline"
- }
- },
- "typography": {
- "textDecoration": "none"
- }
- }
- },
- "typography": {
- "fontSize": "var:preset|font-size|small"
- }
- },
- "core/post-navigation-link": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/post-terms": {
- "css": "& a { white-space: nowrap; }",
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "fontWeight": "600"
- }
- },
- "core/post-title": {
- "elements": {
- "link": {
- ":hover": {
- "typography": {
- "textDecoration": "underline"
- }
- },
- "typography": {
- "textDecoration": "none"
- }
- }
- }
- },
- "core/quote": {
- "border": {
- "style": "solid",
- "width": "0 0 0 2px",
- "color": "currentColor"
- },
- "spacing": {
- "blockGap": "var:preset|spacing|30",
- "margin": {
- "left": "0",
- "right": "0"
- },
- "padding": {
- "top": "var:preset|spacing|30",
- "right": "var:preset|spacing|40",
- "bottom": "var:preset|spacing|30",
- "left": "var:preset|spacing|40"
- }
- },
- "typography": {
- "fontSize": "var:preset|font-size|large",
- "fontWeight": "300"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "fontStyle": "normal",
- "fontWeight": "300"
- },
- "css": "& sub { font-size: 0.65em }"
- }
- },
- "css": "&.has-text-align-right { border-width: 0 2px 0 0; } &.has-text-align-center { border-width: 0;border-inline: 0; padding-inline: 0; }",
- "variations": {
- "plain": {
- "border": {
- "color": "transparent",
- "style": "none",
- "width": "0",
- "radius": "0"
- },
- "spacing": {
- "padding": {
- "top": "0",
- "right": "0",
- "bottom": "0",
- "left": "0"
- }
- }
- }
- }
- },
- "core/pullquote": {
- "typography": {
- "fontSize": "var:preset|font-size|xx-large",
- "fontWeight": "300",
- "lineHeight": "1.2"
- },
- "elements": {
- "cite": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "fontStyle": "normal"
- }
- }
- },
- "spacing": {
- "padding": {
- "bottom": "var:preset|spacing|30",
- "top": "var:preset|spacing|30"
- }
- },
- "css": "& p:last-of-type {margin-bottom: var(--wp--preset--spacing--30);}"
- },
- "core/query-pagination": {
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "fontWeight": "500"
- }
- },
- "core/search": {
- "css": "& .wp-block-search__input{border-radius:3.125rem;padding-left:1.5625rem;padding-right:1.5625rem;border-color:var(--wp--preset--color--accent-6);}",
- "typography": {
- "fontSize": "var:preset|font-size|medium",
- "lineHeight": "1.6"
- },
- "elements": {
- "button": {
- "border": {
- "radius": "3.125rem"
- },
- "spacing": {
- "margin": {
- "left": "1.125rem"
- }
- },
- ":hover" : {
- "border": {
- "color": "transparent"
- }
- }
- }
- }
- },
- "core/separator": {
- "border": {
- "color": "currentColor",
- "style": "solid",
- "width": "0 0 1px 0"
- },
- "color": {
- "text": "var:preset|color|accent-6"
- },
- "variations": {
- "wide": {
- "css": " &:not(.alignfull){max-width: var(--wp--style--global--wide-size) !important;}"
- }
- }
- },
- "core/site-tagline": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/site-title": {
- "typography": {
- "fontWeight": "700",
- "letterSpacing": "-.5px"
- },
- "elements": {
- "link": {
- "typography": {
- "textDecoration": "none"
- },
- ":hover": {
- "typography": {
- "textDecoration": "underline"
- }
- }
- }
- }
- },
- "core/term-description": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "core/navigation": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- },
- "elements": {
- "link": {
- ":hover": {
- "typography": {
- "textDecoration": "underline"
- }
- },
- "typography": {
- "textDecoration": "none"
- }
- }
- }
- },
- "core/list": {
- "css": "& li{margin-top: 0.5rem;}"
- }
- },
- "elements": {
- "button": {
- "color": {
- "background": "var:preset|color|contrast",
- "text": "var:preset|color|base"
- },
- ":focus": {
- "outline": {
- "color": "var:preset|color|accent-4",
- "offset": "2px"
- }
- },
- ":hover": {
- "color": {
- "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)",
- "text": "var:preset|color|base"
- },
- "border": {
- "color": "transparent"
- }
- },
- "spacing": {
- "padding": {
- "bottom": "1rem",
- "left": "2.25rem",
- "right": "2.25rem",
- "top": "1rem"
- }
- },
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "caption": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "lineHeight": "1.4"
- }
- },
- "h1": {
- "typography": {
- "fontSize": "var:preset|font-size|xx-large"
- }
- },
- "h2": {
- "typography": {
- "fontSize": "var:preset|font-size|x-large"
- }
- },
- "h3": {
- "typography": {
- "fontSize": "var:preset|font-size|large"
- }
- },
- "h4": {
- "typography": {
- "fontSize": "var:preset|font-size|medium"
- }
- },
- "h5": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "letterSpacing": "0.5px"
- }
- },
- "h6": {
- "typography": {
- "fontSize": "var:preset|font-size|small",
- "fontWeight": "700",
- "letterSpacing": "1.4px",
- "textTransform": "uppercase"
- }
- },
- "heading": {
- "typography": {
- "fontWeight": "400",
- "lineHeight": "1.125",
- "letterSpacing": "-0.1px"
- }
- },
- "link": {
- "color": {
- "text": "currentColor"
- },
- ":hover": {
- "typography": {
- "textDecoration": "none"
- }
- }
- }
- }
- },
- "templateParts": [
- {
- "area": "header",
- "name": "header",
- "title": "Header"
- },
- {
- "area": "header",
- "name": "vertical-header",
- "title": "Vertical site header"
- },
- {
- "area": "header",
- "name": "header-large-title",
- "title": "Header with large title"
-
- },
- {
- "area": "footer",
- "name": "footer",
- "title": "Footer"
- },
- {
- "area": "footer",
- "name": "footer-columns",
- "title": "Footer Columns"
- },
- {
- "area": "footer",
- "name": "footer-newsletter",
- "title": "Footer Newsletter"
- },
- {
- "area": "uncategorized",
- "name": "sidebar",
- "title": "Sidebar"
- }
- ],
- "customTemplates": [
- {
- "name": "page-no-title",
- "postTypes": ["page"],
- "title": "Page No Title"
- }
- ]
-}
diff --git a/dcbuild.log b/dcbuild.log
new file mode 100644
index 0000000..bb90620
--- /dev/null
+++ b/dcbuild.log
@@ -0,0 +1,1628 @@
+#1 [internal] load local bake definitions
+#1 reading from stdin 652B done
+#1 DONE 0.0s
+
+#2 [internal] load build definition from Dockerfile
+#2 transferring dockerfile: 1.26kB done
+#2 DONE 0.0s
+
+#3 [internal] load metadata for docker.io/dunglas/frankenphp:1.5.0-php8.4.7-bookworm@sha256:661bbd11ce8b9bbf51ba6e13d1cb7ea533466984142d936411df325922c4cdb1
+#3 DONE 0.1s
+
+#4 [internal] load metadata for docker.io/library/composer:2.9.1@sha256:7384cf9fa70b710af02c9f40bec6e44472e07138efa5ab3428a058087c0d2724
+#4 DONE 0.1s
+
+#5 [internal] load .dockerignore
+#5 transferring context:
+#5 transferring context: 200B done
+#5 DONE 0.0s
+
+#6 [base 1/7] FROM docker.io/dunglas/frankenphp:1.5.0-php8.4.7-bookworm@sha256:661bbd11ce8b9bbf51ba6e13d1cb7ea533466984142d936411df325922c4cdb1
+#6 resolve docker.io/dunglas/frankenphp:1.5.0-php8.4.7-bookworm@sha256:661bbd11ce8b9bbf51ba6e13d1cb7ea533466984142d936411df325922c4cdb1 0.1s done
+#6 CACHED
+
+#7 [composer_img 1/1] FROM docker.io/library/composer:2.9.1@sha256:7384cf9fa70b710af02c9f40bec6e44472e07138efa5ab3428a058087c0d2724
+#7 resolve docker.io/library/composer:2.9.1@sha256:7384cf9fa70b710af02c9f40bec6e44472e07138efa5ab3428a058087c0d2724 0.1s done
+#7 CACHED
+
+#8 [internal] load build context
+#8 transferring context: 181B done
+#8 DONE 0.0s
+
+#9 [base 2/7] COPY --from=composer_img /usr/bin/composer /usr/bin/composer
+#9 DONE 0.5s
+
+#10 [base 3/7] RUN install-php-extensions gd intl mysqli opcache
+#10 0.108 install-php-extensions v.2.7.34
+#10 0.108 #StandWithUkraine
+#10 1.128 Updating channel "pecl.php.net"
+#10 1.977 Update of Channel "pecl.php.net" succeeded
+#10 2.007 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
+#10 2.047 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
+#10 2.061 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
+#10 2.071 Get:4 http://deb.debian.org/debian bookworm/main arm64 Packages [8693 kB]
+#10 4.271 Get:5 http://deb.debian.org/debian bookworm-updates/main arm64 Packages [6936 B]
+#10 4.275 Get:6 http://deb.debian.org/debian-security bookworm-security/main arm64 Packages [283 kB]
+#10 4.844 Fetched 9237 kB in 3s (3231 kB/s)
+#10 4.844 Reading package lists...
+#10 6.423 ### MARKING PRE-INSTALLED PACKAGES AS IN-USE ###
+#10 6.700 libicu72 was already set to manually installed.
+#10 6.701 ### INSTALLING REQUIRED PACKAGES ###
+#10 6.701 # Packages to be kept after installation: libabsl20220623 libaom3 libavif15 libbsd0 libdav1d6 libfreetype6 libgav1-1 libjpeg62-turbo libpng16-16 librav1e0 libsvtav1enc1 libwebp7 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxpm4 libyuv0
+#10 6.701 # Packages to be used only for installation: icu-devtools libaom-dev libavif-dev libbrotli-dev libdav1d-dev libfreetype-dev libfreetype6-dev libicu-dev libjpeg62-turbo-dev libpng-dev libpthread-stubs0-dev libwebp-dev libwebpdemux2 libwebpmux3 libx11-dev libxau-dev libxcb1-dev libxdmcp-dev libxpm-dev x11proto-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
+#10 9.477 debconf: delaying package configuration, since apt-utils is not installed
+#10 9.525 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 13315 files and directories currently installed.)
+#10 9.530 Preparing to unpack .../00-libicu72_72.1-3+deb12u1_arm64.deb ...
+#10 9.577 Unpacking libicu72:arm64 (72.1-3+deb12u1) over (72.1-3) ...
+#10 9.937 Selecting previously unselected package icu-devtools.
+#10 9.937 Preparing to unpack .../01-icu-devtools_72.1-3+deb12u1_arm64.deb ...
+#10 9.943 Unpacking icu-devtools (72.1-3+deb12u1) ...
+#10 9.975 Selecting previously unselected package libabsl20220623:arm64.
+#10 9.976 Preparing to unpack .../02-libabsl20220623_20220623.1-1+deb12u2_arm64.deb ...
+#10 9.979 Unpacking libabsl20220623:arm64 (20220623.1-1+deb12u2) ...
+#10 10.03 Selecting previously unselected package libaom3:arm64.
+#10 10.03 Preparing to unpack .../03-libaom3_3.6.0-1+deb12u2_arm64.deb ...
+#10 10.04 Unpacking libaom3:arm64 (3.6.0-1+deb12u2) ...
+#10 10.12 Selecting previously unselected package libaom-dev:arm64.
+#10 10.12 Preparing to unpack .../04-libaom-dev_3.6.0-1+deb12u2_arm64.deb ...
+#10 10.12 Unpacking libaom-dev:arm64 (3.6.0-1+deb12u2) ...
+#10 10.22 Selecting previously unselected package libdav1d6:arm64.
+#10 10.22 Preparing to unpack .../05-libdav1d6_1.0.0-2+deb12u1_arm64.deb ...
+#10 10.22 Unpacking libdav1d6:arm64 (1.0.0-2+deb12u1) ...
+#10 10.26 Selecting previously unselected package libgav1-1:arm64.
+#10 10.27 Preparing to unpack .../06-libgav1-1_0.18.0-1+b1_arm64.deb ...
+#10 10.27 Unpacking libgav1-1:arm64 (0.18.0-1+b1) ...
+#10 10.31 Selecting previously unselected package librav1e0:arm64.
+#10 10.31 Preparing to unpack .../07-librav1e0_0.5.1-6_arm64.deb ...
+#10 10.31 Unpacking librav1e0:arm64 (0.5.1-6) ...
+#10 10.37 Selecting previously unselected package libsvtav1enc1:arm64.
+#10 10.37 Preparing to unpack .../08-libsvtav1enc1_1.4.1+dfsg-1_arm64.deb ...
+#10 10.37 Unpacking libsvtav1enc1:arm64 (1.4.1+dfsg-1) ...
+#10 10.45 Selecting previously unselected package libjpeg62-turbo:arm64.
+#10 10.45 Preparing to unpack .../09-libjpeg62-turbo_1%3a2.1.5-2_arm64.deb ...
+#10 10.45 Unpacking libjpeg62-turbo:arm64 (1:2.1.5-2) ...
+#10 10.48 Selecting previously unselected package libyuv0:arm64.
+#10 10.48 Preparing to unpack .../10-libyuv0_0.0~git20230123.b2528b0-1_arm64.deb ...
+#10 10.49 Unpacking libyuv0:arm64 (0.0~git20230123.b2528b0-1) ...
+#10 10.52 Selecting previously unselected package libavif15:arm64.
+#10 10.52 Preparing to unpack .../11-libavif15_0.11.1-1+deb12u1_arm64.deb ...
+#10 10.52 Unpacking libavif15:arm64 (0.11.1-1+deb12u1) ...
+#10 10.54 Selecting previously unselected package libavif-dev:arm64.
+#10 10.54 Preparing to unpack .../12-libavif-dev_0.11.1-1+deb12u1_arm64.deb ...
+#10 10.55 Unpacking libavif-dev:arm64 (0.11.1-1+deb12u1) ...
+#10 10.57 Selecting previously unselected package libbrotli-dev:arm64.
+#10 10.57 Preparing to unpack .../13-libbrotli-dev_1.0.9-2+b6_arm64.deb ...
+#10 10.57 Unpacking libbrotli-dev:arm64 (1.0.9-2+b6) ...
+#10 10.61 Selecting previously unselected package libbsd0:arm64.
+#10 10.61 Preparing to unpack .../14-libbsd0_0.11.7-2_arm64.deb ...
+#10 10.61 Unpacking libbsd0:arm64 (0.11.7-2) ...
+#10 10.64 Selecting previously unselected package libdav1d-dev:arm64.
+#10 10.64 Preparing to unpack .../15-libdav1d-dev_1.0.0-2+deb12u1_arm64.deb ...
+#10 10.64 Unpacking libdav1d-dev:arm64 (1.0.0-2+deb12u1) ...
+#10 10.66 Selecting previously unselected package libpng16-16:arm64.
+#10 10.66 Preparing to unpack .../16-libpng16-16_1.6.39-2_arm64.deb ...
+#10 10.67 Unpacking libpng16-16:arm64 (1.6.39-2) ...
+#10 10.70 Selecting previously unselected package libfreetype6:arm64.
+#10 10.70 Preparing to unpack .../17-libfreetype6_2.12.1+dfsg-5+deb12u4_arm64.deb ...
+#10 10.70 Unpacking libfreetype6:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 10.74 Selecting previously unselected package zlib1g-dev:arm64.
+#10 10.74 Preparing to unpack .../18-zlib1g-dev_1%3a1.2.13.dfsg-1_arm64.deb ...
+#10 10.74 Unpacking zlib1g-dev:arm64 (1:1.2.13.dfsg-1) ...
+#10 10.78 Selecting previously unselected package libpng-dev:arm64.
+#10 10.78 Preparing to unpack .../19-libpng-dev_1.6.39-2_arm64.deb ...
+#10 10.78 Unpacking libpng-dev:arm64 (1.6.39-2) ...
+#10 10.81 Selecting previously unselected package libfreetype-dev:arm64.
+#10 10.81 Preparing to unpack .../20-libfreetype-dev_2.12.1+dfsg-5+deb12u4_arm64.deb ...
+#10 10.82 Unpacking libfreetype-dev:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 10.86 Selecting previously unselected package libfreetype6-dev:arm64.
+#10 10.86 Preparing to unpack .../21-libfreetype6-dev_2.12.1+dfsg-5+deb12u4_arm64.deb ...
+#10 10.87 Unpacking libfreetype6-dev:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 10.89 Selecting previously unselected package libicu-dev:arm64.
+#10 10.89 Preparing to unpack .../22-libicu-dev_72.1-3+deb12u1_arm64.deb ...
+#10 10.89 Unpacking libicu-dev:arm64 (72.1-3+deb12u1) ...
+#10 11.23 Selecting previously unselected package libjpeg62-turbo-dev:arm64.
+#10 11.23 Preparing to unpack .../23-libjpeg62-turbo-dev_1%3a2.1.5-2_arm64.deb ...
+#10 11.23 Unpacking libjpeg62-turbo-dev:arm64 (1:2.1.5-2) ...
+#10 11.27 Selecting previously unselected package libpthread-stubs0-dev:arm64.
+#10 11.27 Preparing to unpack .../24-libpthread-stubs0-dev_0.4-1_arm64.deb ...
+#10 11.27 Unpacking libpthread-stubs0-dev:arm64 (0.4-1) ...
+#10 11.30 Selecting previously unselected package libwebp7:arm64.
+#10 11.30 Preparing to unpack .../25-libwebp7_1.2.4-0.2+deb12u1_arm64.deb ...
+#10 11.30 Unpacking libwebp7:arm64 (1.2.4-0.2+deb12u1) ...
+#10 11.33 Selecting previously unselected package libwebpmux3:arm64.
+#10 11.33 Preparing to unpack .../26-libwebpmux3_1.2.4-0.2+deb12u1_arm64.deb ...
+#10 11.34 Unpacking libwebpmux3:arm64 (1.2.4-0.2+deb12u1) ...
+#10 11.36 Selecting previously unselected package libwebpdemux2:arm64.
+#10 11.36 Preparing to unpack .../27-libwebpdemux2_1.2.4-0.2+deb12u1_arm64.deb ...
+#10 11.36 Unpacking libwebpdemux2:arm64 (1.2.4-0.2+deb12u1) ...
+#10 11.38 Selecting previously unselected package libwebp-dev:arm64.
+#10 11.38 Preparing to unpack .../28-libwebp-dev_1.2.4-0.2+deb12u1_arm64.deb ...
+#10 11.38 Unpacking libwebp-dev:arm64 (1.2.4-0.2+deb12u1) ...
+#10 11.42 Selecting previously unselected package libxau6:arm64.
+#10 11.42 Preparing to unpack .../29-libxau6_1%3a1.0.9-1_arm64.deb ...
+#10 11.42 Unpacking libxau6:arm64 (1:1.0.9-1) ...
+#10 11.44 Selecting previously unselected package libxdmcp6:arm64.
+#10 11.44 Preparing to unpack .../30-libxdmcp6_1%3a1.1.2-3_arm64.deb ...
+#10 11.44 Unpacking libxdmcp6:arm64 (1:1.1.2-3) ...
+#10 11.46 Selecting previously unselected package libxcb1:arm64.
+#10 11.46 Preparing to unpack .../31-libxcb1_1.15-1_arm64.deb ...
+#10 11.47 Unpacking libxcb1:arm64 (1.15-1) ...
+#10 11.49 Selecting previously unselected package libx11-data.
+#10 11.49 Preparing to unpack .../32-libx11-data_2%3a1.8.4-2+deb12u2_all.deb ...
+#10 11.49 Unpacking libx11-data (2:1.8.4-2+deb12u2) ...
+#10 11.53 Selecting previously unselected package libx11-6:arm64.
+#10 11.53 Preparing to unpack .../33-libx11-6_2%3a1.8.4-2+deb12u2_arm64.deb ...
+#10 11.53 Unpacking libx11-6:arm64 (2:1.8.4-2+deb12u2) ...
+#10 11.57 Selecting previously unselected package xorg-sgml-doctools.
+#10 11.57 Preparing to unpack .../34-xorg-sgml-doctools_1%3a1.11-1.1_all.deb ...
+#10 11.58 Unpacking xorg-sgml-doctools (1:1.11-1.1) ...
+#10 11.60 Selecting previously unselected package x11proto-dev.
+#10 11.60 Preparing to unpack .../35-x11proto-dev_2022.1-1_all.deb ...
+#10 11.60 Unpacking x11proto-dev (2022.1-1) ...
+#10 11.64 Selecting previously unselected package libxau-dev:arm64.
+#10 11.64 Preparing to unpack .../36-libxau-dev_1%3a1.0.9-1_arm64.deb ...
+#10 11.64 Unpacking libxau-dev:arm64 (1:1.0.9-1) ...
+#10 11.66 Selecting previously unselected package libxdmcp-dev:arm64.
+#10 11.67 Preparing to unpack .../37-libxdmcp-dev_1%3a1.1.2-3_arm64.deb ...
+#10 11.67 Unpacking libxdmcp-dev:arm64 (1:1.1.2-3) ...
+#10 11.69 Selecting previously unselected package xtrans-dev.
+#10 11.69 Preparing to unpack .../38-xtrans-dev_1.4.0-1_all.deb ...
+#10 11.69 Unpacking xtrans-dev (1.4.0-1) ...
+#10 11.71 Selecting previously unselected package libxcb1-dev:arm64.
+#10 11.71 Preparing to unpack .../39-libxcb1-dev_1.15-1_arm64.deb ...
+#10 11.72 Unpacking libxcb1-dev:arm64 (1.15-1) ...
+#10 11.75 Selecting previously unselected package libx11-dev:arm64.
+#10 11.75 Preparing to unpack .../40-libx11-dev_2%3a1.8.4-2+deb12u2_arm64.deb ...
+#10 11.75 Unpacking libx11-dev:arm64 (2:1.8.4-2+deb12u2) ...
+#10 11.81 Selecting previously unselected package libxpm4:arm64.
+#10 11.81 Preparing to unpack .../41-libxpm4_1%3a3.5.12-1.1+deb12u1_arm64.deb ...
+#10 11.81 Unpacking libxpm4:arm64 (1:3.5.12-1.1+deb12u1) ...
+#10 11.84 Selecting previously unselected package libxpm-dev:arm64.
+#10 11.84 Preparing to unpack .../42-libxpm-dev_1%3a3.5.12-1.1+deb12u1_arm64.deb ...
+#10 11.84 Unpacking libxpm-dev:arm64 (1:3.5.12-1.1+deb12u1) ...
+#10 11.87 Setting up libaom3:arm64 (3.6.0-1+deb12u2) ...
+#10 11.88 Setting up libabsl20220623:arm64 (20220623.1-1+deb12u2) ...
+#10 11.89 Setting up libxau6:arm64 (1:1.0.9-1) ...
+#10 11.90 Setting up libicu72:arm64 (72.1-3+deb12u1) ...
+#10 11.91 Setting up libsvtav1enc1:arm64 (1.4.1+dfsg-1) ...
+#10 11.91 Setting up libpthread-stubs0-dev:arm64 (0.4-1) ...
+#10 11.92 Setting up librav1e0:arm64 (0.5.1-6) ...
+#10 11.92 Setting up libaom-dev:arm64 (3.6.0-1+deb12u2) ...
+#10 11.93 Setting up xtrans-dev (1.4.0-1) ...
+#10 11.93 Setting up libjpeg62-turbo:arm64 (1:2.1.5-2) ...
+#10 11.93 Setting up libx11-data (2:1.8.4-2+deb12u2) ...
+#10 11.94 Setting up libjpeg62-turbo-dev:arm64 (1:2.1.5-2) ...
+#10 11.94 Setting up libpng16-16:arm64 (1.6.39-2) ...
+#10 11.95 Setting up icu-devtools (72.1-3+deb12u1) ...
+#10 11.95 Setting up libgav1-1:arm64 (0.18.0-1+b1) ...
+#10 11.95 Setting up libdav1d6:arm64 (1.0.0-2+deb12u1) ...
+#10 11.96 Setting up libwebp7:arm64 (1.2.4-0.2+deb12u1) ...
+#10 11.96 Setting up zlib1g-dev:arm64 (1:1.2.13.dfsg-1) ...
+#10 11.97 Setting up xorg-sgml-doctools (1:1.11-1.1) ...
+#10 11.97 Setting up libwebpmux3:arm64 (1.2.4-0.2+deb12u1) ...
+#10 11.97 Setting up libbsd0:arm64 (0.11.7-2) ...
+#10 11.98 Setting up libyuv0:arm64 (0.0~git20230123.b2528b0-1) ...
+#10 11.98 Setting up libicu-dev:arm64 (72.1-3+deb12u1) ...
+#10 11.99 Setting up libbrotli-dev:arm64 (1.0.9-2+b6) ...
+#10 11.99 Setting up x11proto-dev (2022.1-1) ...
+#10 11.99 Setting up libxdmcp6:arm64 (1:1.1.2-3) ...
+#10 12.00 Setting up libxcb1:arm64 (1.15-1) ...
+#10 12.00 Setting up libxau-dev:arm64 (1:1.0.9-1) ...
+#10 12.00 Setting up libavif15:arm64 (0.11.1-1+deb12u1) ...
+#10 12.01 Setting up libwebpdemux2:arm64 (1.2.4-0.2+deb12u1) ...
+#10 12.01 Setting up libpng-dev:arm64 (1.6.39-2) ...
+#10 12.02 Setting up libxdmcp-dev:arm64 (1:1.1.2-3) ...
+#10 12.02 Setting up libwebp-dev:arm64 (1.2.4-0.2+deb12u1) ...
+#10 12.02 Setting up libfreetype6:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 12.03 Setting up libdav1d-dev:arm64 (1.0.0-2+deb12u1) ...
+#10 12.03 Setting up libavif-dev:arm64 (0.11.1-1+deb12u1) ...
+#10 12.04 Setting up libx11-6:arm64 (2:1.8.4-2+deb12u2) ...
+#10 12.04 Setting up libxcb1-dev:arm64 (1.15-1) ...
+#10 12.04 Setting up libxpm4:arm64 (1:3.5.12-1.1+deb12u1) ...
+#10 12.05 Setting up libx11-dev:arm64 (2:1.8.4-2+deb12u2) ...
+#10 12.05 Setting up libfreetype-dev:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 12.05 Setting up libxpm-dev:arm64 (1:3.5.12-1.1+deb12u1) ...
+#10 12.06 Setting up libfreetype6-dev:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 12.06 Processing triggers for libc-bin (2.36-9+deb12u10) ...
+#10 12.07 ldconfig: /usr/local/lib/libwatcher-c.so.0 is not a symbolic link
+#10 12.07
+#10 12.09 ### INSTALLING BUNDLED MODULE gd ###
+#10 12.10 Configuring for:
+#10 12.10 PHP Version: 8.4
+#10 12.10 PHP Api Version: 20240924
+#10 12.10 Zend Module Api No: 20240924
+#10 12.10 Zend Extension Api No: 420240924
+#10 12.37 checking for grep that handles long lines and -e... /usr/bin/grep
+#10 12.37 checking for egrep... /usr/bin/grep -E
+#10 12.37 checking for a sed that does not truncate output... /usr/bin/sed
+#10 12.39 checking build system type... aarch64-unknown-linux-gnu
+#10 12.39 checking host system type... aarch64-unknown-linux-gnu
+#10 12.39 checking target system type... aarch64-unknown-linux-gnu
+#10 12.40 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 12.41 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 12.41 checking for gawk... no
+#10 12.41 checking for nawk... nawk
+#10 12.41 checking if nawk is broken... no
+#10 12.41 checking for pkg-config... /usr/bin/pkg-config
+#10 12.41 checking pkg-config is at least version 0.9.0... yes
+#10 12.41 checking for cc... cc
+#10 12.42 checking whether the C compiler works... yes
+#10 12.44 checking for C compiler default output file name... a.out
+#10 12.44 checking for suffix of executables...
+#10 12.45 checking whether we are cross compiling... no
+#10 12.47 checking for suffix of object files... o
+#10 12.48 checking whether the compiler supports GNU C... yes
+#10 12.48 checking whether cc accepts -g... yes
+#10 12.49 checking for cc option to enable C11 features... none needed
+#10 12.51 checking how to run the C preprocessor... cc -E
+#10 12.53 checking for icc... no
+#10 12.53 checking for suncc... no
+#10 12.54 checking for system library directory... lib
+#10 12.54 checking if compiler supports -Wl,-rpath,... yes
+#10 12.56 checking for PHP prefix... /usr/local
+#10 12.56 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
+#10 12.56 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-zts-20240924
+#10 12.56 checking for PHP installed headers prefix... /usr/local/include/php
+#10 12.56 checking if debugging is enabled... no
+#10 12.56 checking if PHP is built with thread safety (ZTS)... yes
+#10 12.57
+#10 12.57 Configuring extension
+#10 12.57 checking for GD support... yes, shared
+#10 12.57 checking for external libgd... no
+#10 12.57 checking for libavif... yes
+#10 12.57 checking for libwebp... yes
+#10 12.57 checking for libjpeg... yes
+#10 12.57 checking for libXpm... yes
+#10 12.57 checking for FreeType 2... yes
+#10 12.57 checking whether to enable JIS-mapped Japanese font support in GD... no
+#10 12.57 checking for zlib >= 1.2.11... yes
+#10 12.57 checking for libpng... yes
+#10 12.58 checking for libavif >= 0.8.2... yes
+#10 12.58 checking for libwebp >= 0.2.0... yes
+#10 12.58 checking for libjpeg... yes
+#10 12.58 checking for xpm... yes
+#10 12.59 checking for freetype2... yes
+#10 12.60 checking whether build works... yes
+#10 12.62
+#10 12.62 Configuring libtool
+#10 12.62 checking for a sed that does not truncate output... /usr/bin/sed
+#10 12.62 checking for ld used by cc... /usr/bin/ld
+#10 12.62 checking if the linker (/usr/bin/ld) is GNU ld... yes
+#10 12.62 checking for /usr/bin/ld option to reload object files... -r
+#10 12.62 checking for BSD-compatible nm... /usr/bin/nm -B
+#10 12.62 checking whether ln -s works... yes
+#10 12.62 checking how to recognize dependent libraries... pass_all
+#10 12.62 checking for stdio.h... yes
+#10 12.63 checking for stdlib.h... yes
+#10 12.64 checking for string.h... yes
+#10 12.65 checking for inttypes.h... yes
+#10 12.66 checking for stdint.h... yes
+#10 12.67 checking for strings.h... yes
+#10 12.68 checking for sys/stat.h... yes
+#10 12.69 checking for sys/types.h... yes
+#10 12.70 checking for unistd.h... yes
+#10 12.71 checking for dlfcn.h... yes
+#10 12.72 checking the maximum length of command line arguments... 1572864
+#10 12.72 checking command to parse /usr/bin/nm -B output from cc object... ok
+#10 12.74 checking for objdir... .libs
+#10 12.74 checking for ar... ar
+#10 12.74 checking for ranlib... ranlib
+#10 12.74 checking for strip... strip
+#10 12.76 checking if cc supports -fno-rtti -fno-exceptions... no
+#10 12.77 checking for cc option to produce PIC... -fPIC
+#10 12.77 checking if cc PIC flag -fPIC works... yes
+#10 12.78 checking if cc static flag -static works... yes
+#10 12.80 checking if cc supports -c -o file.o... yes
+#10 12.81 checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
+#10 12.81 checking whether -lc should be explicitly linked in... no
+#10 12.82 checking dynamic linker characteristics... GNU/Linux ld.so
+#10 12.82 checking how to hardcode library paths into programs... immediate
+#10 12.82 checking whether stripping libraries is possible... yes
+#10 12.83 checking if libtool supports shared libraries... yes
+#10 12.83 checking whether to build shared libraries... yes
+#10 12.83 checking whether to build static libraries... no
+#10 12.86
+#10 12.86 creating libtool
+#10 12.87 appending configuration tag "CXX" to libtool
+#10 12.87
+#10 12.87 Generating files
+#10 12.88 configure: creating build directories
+#10 12.88 configure: creating Makefile
+#10 12.89 configure: patching config.h.in
+#10 12.89 configure: creating ./config.status
+#10 12.90 config.status: creating config.h
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/gd.c -o gd.lo -MMD -MF gd.dep -MT gd.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_avif.c -o libgd/gd_avif.lo -MMD -MF libgd/gd_avif.dep -MT libgd/gd_avif.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_bmp.c -o libgd/gd_bmp.lo -MMD -MF libgd/gd_bmp.dep -MT libgd/gd_bmp.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_color_match.c -o libgd/gd_color_match.lo -MMD -MF libgd/gd_color_match.dep -MT libgd/gd_color_match.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_crop.c -o libgd/gd_crop.lo -MMD -MF libgd/gd_crop.dep -MT libgd/gd_crop.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_filter.c -o libgd/gd_filter.lo -MMD -MF libgd/gd_filter.dep -MT libgd/gd_filter.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gd.c -o libgd/gd_gd.lo -MMD -MF libgd/gd_gd.dep -MT libgd/gd_gd.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gd2.c -o libgd/gd_gd2.lo -MMD -MF libgd/gd_gd2.dep -MT libgd/gd_gd2.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gif_in.c -o libgd/gd_gif_in.lo -MMD -MF libgd/gd_gif_in.dep -MT libgd/gd_gif_in.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gif_out.c -o libgd/gd_gif_out.lo -MMD -MF libgd/gd_gif_out.dep -MT libgd/gd_gif_out.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_interpolation.c -o libgd/gd_interpolation.lo -MMD -MF libgd/gd_interpolation.dep -MT libgd/gd_interpolation.lo
+#10 12.92 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io_dp.c -o libgd/gd_io_dp.lo -MMD -MF libgd/gd_io_dp.dep -MT libgd/gd_io_dp.lo
+#10 12.99 mkdir libgd/.libs
+#10 12.99 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_avif.c -MMD -MF libgd/gd_avif.dep -MT libgd/gd_avif.lo -fPIC -DPIC -o libgd/.libs/gd_avif.o
+#10 12.99 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gif_in.c -MMD -MF libgd/gd_gif_in.dep -MT libgd/gd_gif_in.lo -fPIC -DPIC -o libgd/.libs/gd_gif_in.o
+#10 12.99 mkdir .libs
+#10 12.99 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_filter.c -MMD -MF libgd/gd_filter.dep -MT libgd/gd_filter.lo -fPIC -DPIC -o libgd/.libs/gd_filter.o
+#10 12.99 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/gd.c -MMD -MF gd.dep -MT gd.lo -fPIC -DPIC -o .libs/gd.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_crop.c -MMD -MF libgd/gd_crop.dep -MT libgd/gd_crop.lo -fPIC -DPIC -o libgd/.libs/gd_crop.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gif_out.c -MMD -MF libgd/gd_gif_out.dep -MT libgd/gd_gif_out.lo -fPIC -DPIC -o libgd/.libs/gd_gif_out.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gd2.c -MMD -MF libgd/gd_gd2.dep -MT libgd/gd_gd2.lo -fPIC -DPIC -o libgd/.libs/gd_gd2.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io_dp.c -MMD -MF libgd/gd_io_dp.dep -MT libgd/gd_io_dp.lo -fPIC -DPIC -o libgd/.libs/gd_io_dp.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_color_match.c -MMD -MF libgd/gd_color_match.dep -MT libgd/gd_color_match.lo -fPIC -DPIC -o libgd/.libs/gd_color_match.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_interpolation.c -MMD -MF libgd/gd_interpolation.dep -MT libgd/gd_interpolation.lo -fPIC -DPIC -o libgd/.libs/gd_interpolation.o
+#10 13.00 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_gd.c -MMD -MF libgd/gd_gd.dep -MT libgd/gd_gd.lo -fPIC -DPIC -o libgd/.libs/gd_gd.o
+#10 13.01 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_bmp.c -MMD -MF libgd/gd_bmp.dep -MT libgd/gd_bmp.lo -fPIC -DPIC -o libgd/.libs/gd_bmp.o
+#10 13.07 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io_file.c -o libgd/gd_io_file.lo -MMD -MF libgd/gd_io_file.dep -MT libgd/gd_io_file.lo
+#10 13.08 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io_ss.c -o libgd/gd_io_ss.lo -MMD -MF libgd/gd_io_ss.dep -MT libgd/gd_io_ss.lo
+#10 13.10 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io.c -o libgd/gd_io.lo -MMD -MF libgd/gd_io.dep -MT libgd/gd_io.lo
+#10 13.12 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_jpeg.c -o libgd/gd_jpeg.lo -MMD -MF libgd/gd_jpeg.dep -MT libgd/gd_jpeg.lo
+#10 13.13 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io_file.c -MMD -MF libgd/gd_io_file.dep -MT libgd/gd_io_file.lo -fPIC -DPIC -o libgd/.libs/gd_io_file.o
+#10 13.14 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io_ss.c -MMD -MF libgd/gd_io_ss.dep -MT libgd/gd_io_ss.lo -fPIC -DPIC -o libgd/.libs/gd_io_ss.o
+#10 13.16 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_io.c -MMD -MF libgd/gd_io.dep -MT libgd/gd_io.lo -fPIC -DPIC -o libgd/.libs/gd_io.o
+#10 13.18 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_jpeg.c -MMD -MF libgd/gd_jpeg.dep -MT libgd/gd_jpeg.lo -fPIC -DPIC -o libgd/.libs/gd_jpeg.o
+#10 13.23 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_matrix.c -o libgd/gd_matrix.lo -MMD -MF libgd/gd_matrix.dep -MT libgd/gd_matrix.lo
+#10 13.25 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_pixelate.c -o libgd/gd_pixelate.lo -MMD -MF libgd/gd_pixelate.dep -MT libgd/gd_pixelate.lo
+#10 13.26 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_png.c -o libgd/gd_png.lo -MMD -MF libgd/gd_png.dep -MT libgd/gd_png.lo
+#10 13.27 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_rotate.c -o libgd/gd_rotate.lo -MMD -MF libgd/gd_rotate.dep -MT libgd/gd_rotate.lo
+#10 13.29 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_security.c -o libgd/gd_security.lo -MMD -MF libgd/gd_security.dep -MT libgd/gd_security.lo
+#10 13.31 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_matrix.c -MMD -MF libgd/gd_matrix.dep -MT libgd/gd_matrix.lo -fPIC -DPIC -o libgd/.libs/gd_matrix.o
+#10 13.34 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_pixelate.c -MMD -MF libgd/gd_pixelate.dep -MT libgd/gd_pixelate.lo -fPIC -DPIC -o libgd/.libs/gd_pixelate.o
+#10 13.34 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_ss.c -o libgd/gd_ss.lo -MMD -MF libgd/gd_ss.dep -MT libgd/gd_ss.lo
+#10 13.34 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_png.c -MMD -MF libgd/gd_png.dep -MT libgd/gd_png.lo -fPIC -DPIC -o libgd/.libs/gd_png.o
+#10 13.34 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_tga.c -o libgd/gd_tga.lo -MMD -MF libgd/gd_tga.dep -MT libgd/gd_tga.lo
+#10 13.35 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_rotate.c -MMD -MF libgd/gd_rotate.dep -MT libgd/gd_rotate.lo -fPIC -DPIC -o libgd/.libs/gd_rotate.o
+#10 13.36 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_topal.c -o libgd/gd_topal.lo -MMD -MF libgd/gd_topal.dep -MT libgd/gd_topal.lo
+#10 13.38 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_transform.c -o libgd/gd_transform.lo -MMD -MF libgd/gd_transform.dep -MT libgd/gd_transform.lo
+#10 13.38 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_wbmp.c -o libgd/gd_wbmp.lo -MMD -MF libgd/gd_wbmp.dep -MT libgd/gd_wbmp.lo
+#10 13.39 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_security.c -MMD -MF libgd/gd_security.dep -MT libgd/gd_security.lo -fPIC -DPIC -o libgd/.libs/gd_security.o
+#10 13.39 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_webp.c -o libgd/gd_webp.lo -MMD -MF libgd/gd_webp.dep -MT libgd/gd_webp.lo
+#10 13.41 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_xbm.c -o libgd/gd_xbm.lo -MMD -MF libgd/gd_xbm.dep -MT libgd/gd_xbm.lo
+#10 13.43 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_ss.c -MMD -MF libgd/gd_ss.dep -MT libgd/gd_ss.lo -fPIC -DPIC -o libgd/.libs/gd_ss.o
+#10 13.43 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_tga.c -MMD -MF libgd/gd_tga.dep -MT libgd/gd_tga.lo -fPIC -DPIC -o libgd/.libs/gd_tga.o
+#10 13.43 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd.c -o libgd/gd.lo -MMD -MF libgd/gd.dep -MT libgd/gd.lo
+#10 13.43 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdcache.c -o libgd/gdcache.lo -MMD -MF libgd/gdcache.dep -MT libgd/gdcache.lo
+#10 13.44 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_topal.c -MMD -MF libgd/gd_topal.dep -MT libgd/gd_topal.lo -fPIC -DPIC -o libgd/.libs/gd_topal.o
+#10 13.46 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontg.c -o libgd/gdfontg.lo -MMD -MF libgd/gdfontg.dep -MT libgd/gdfontg.lo
+#10 13.46 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_transform.c -MMD -MF libgd/gd_transform.dep -MT libgd/gd_transform.lo -fPIC -DPIC -o libgd/.libs/gd_transform.o
+#10 13.47 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_webp.c -MMD -MF libgd/gd_webp.dep -MT libgd/gd_webp.lo -fPIC -DPIC -o libgd/.libs/gd_webp.o
+#10 13.47 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_wbmp.c -MMD -MF libgd/gd_wbmp.dep -MT libgd/gd_wbmp.lo -fPIC -DPIC -o libgd/.libs/gd_wbmp.o
+#10 13.48 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd_xbm.c -MMD -MF libgd/gd_xbm.dep -MT libgd/gd_xbm.lo -fPIC -DPIC -o libgd/.libs/gd_xbm.o
+#10 13.50 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontl.c -o libgd/gdfontl.lo -MMD -MF libgd/gdfontl.dep -MT libgd/gdfontl.lo
+#10 13.50 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gd.c -MMD -MF libgd/gd.dep -MT libgd/gd.lo -fPIC -DPIC -o libgd/.libs/gd.o
+#10 13.51 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdcache.c -MMD -MF libgd/gdcache.dep -MT libgd/gdcache.lo -fPIC -DPIC -o libgd/.libs/gdcache.o
+#10 13.52 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontmb.c -o libgd/gdfontmb.lo -MMD -MF libgd/gdfontmb.dep -MT libgd/gdfontmb.lo
+#10 13.54 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontg.c -MMD -MF libgd/gdfontg.dep -MT libgd/gdfontg.lo -fPIC -DPIC -o libgd/.libs/gdfontg.o
+#10 13.57 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontl.c -MMD -MF libgd/gdfontl.dep -MT libgd/gdfontl.lo -fPIC -DPIC -o libgd/.libs/gdfontl.o
+#10 13.58 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontmb.c -MMD -MF libgd/gdfontmb.dep -MT libgd/gdfontmb.lo -fPIC -DPIC -o libgd/.libs/gdfontmb.o
+#10 13.59 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfonts.c -o libgd/gdfonts.lo -MMD -MF libgd/gdfonts.dep -MT libgd/gdfonts.lo
+#10 13.62 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontt.c -o libgd/gdfontt.lo -MMD -MF libgd/gdfontt.dep -MT libgd/gdfontt.lo
+#10 13.63 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdft.c -o libgd/gdft.lo -MMD -MF libgd/gdft.dep -MT libgd/gdft.lo
+#10 13.64 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdhelpers.c -o libgd/gdhelpers.lo -MMD -MF libgd/gdhelpers.dep -MT libgd/gdhelpers.lo
+#10 13.64 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfonts.c -MMD -MF libgd/gdfonts.dep -MT libgd/gdfonts.lo -fPIC -DPIC -o libgd/.libs/gdfonts.o
+#10 13.67 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdkanji.c -o libgd/gdkanji.lo -MMD -MF libgd/gdkanji.dep -MT libgd/gdkanji.lo
+#10 13.68 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdtables.c -o libgd/gdtables.lo -MMD -MF libgd/gdtables.dep -MT libgd/gdtables.lo
+#10 13.69 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdxpm.c -o libgd/gdxpm.lo -MMD -MF libgd/gdxpm.dep -MT libgd/gdxpm.lo
+#10 13.69 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdfontt.c -MMD -MF libgd/gdfontt.dep -MT libgd/gdfontt.lo -fPIC -DPIC -o libgd/.libs/gdfontt.o
+#10 13.70 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdhelpers.c -MMD -MF libgd/gdhelpers.dep -MT libgd/gdhelpers.lo -fPIC -DPIC -o libgd/.libs/gdhelpers.o
+#10 13.70 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdft.c -MMD -MF libgd/gdft.dep -MT libgd/gdft.lo -fPIC -DPIC -o libgd/.libs/gdft.o
+#10 13.73 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/wbmp.c -o libgd/wbmp.lo -MMD -MF libgd/wbmp.dep -MT libgd/wbmp.lo
+#10 13.73 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdtables.c -MMD -MF libgd/gdtables.dep -MT libgd/gdtables.lo -fPIC -DPIC -o libgd/.libs/gdtables.o
+#10 13.73 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdkanji.c -MMD -MF libgd/gdkanji.dep -MT libgd/gdkanji.lo -fPIC -DPIC -o libgd/.libs/gdkanji.o
+#10 13.76 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/gdxpm.c -MMD -MF libgd/gdxpm.dep -MT libgd/gdxpm.lo -fPIC -DPIC -o libgd/.libs/gdxpm.o
+#10 13.79 cc -I. -I/usr/src/php/ext/gd -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wno-strict-prototypes -I/usr/src/php/ext/gd/libgd -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/gd/libgd/wbmp.c -MMD -MF libgd/wbmp.dep -MT libgd/wbmp.lo -fPIC -DPIC -o libgd/.libs/wbmp.o
+#10 14.19 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=link cc -shared -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/usr/include/libpng16 -I/usr/include/freetype2 -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wl,-O1 -pie -o gd.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/gd/modules gd.lo libgd/gd_avif.lo libgd/gd_bmp.lo libgd/gd_color_match.lo libgd/gd_crop.lo libgd/gd_filter.lo libgd/gd_gd.lo libgd/gd_gd2.lo libgd/gd_gif_in.lo libgd/gd_gif_out.lo libgd/gd_interpolation.lo libgd/gd_io_dp.lo libgd/gd_io_file.lo libgd/gd_io_ss.lo libgd/gd_io.lo libgd/gd_jpeg.lo libgd/gd_matrix.lo libgd/gd_pixelate.lo libgd/gd_png.lo libgd/gd_rotate.lo libgd/gd_security.lo libgd/gd_ss.lo libgd/gd_tga.lo libgd/gd_topal.lo libgd/gd_transform.lo libgd/gd_wbmp.lo libgd/gd_webp.lo libgd/gd_xbm.lo libgd/gd.lo libgd/gdcache.lo libgd/gdfontg.lo libgd/gdfontl.lo libgd/gdfontmb.lo libgd/gdfonts.lo libgd/gdfontt.lo libgd/gdft.lo libgd/gdhelpers.lo libgd/gdkanji.lo libgd/gdtables.lo libgd/gdxpm.lo libgd/wbmp.lo -lz -lpng16 -lavif -lwebp -ljpeg -lXpm -lX11 -lfreetype
+#10 14.30 cc -shared .libs/gd.o libgd/.libs/gd_avif.o libgd/.libs/gd_bmp.o libgd/.libs/gd_color_match.o libgd/.libs/gd_crop.o libgd/.libs/gd_filter.o libgd/.libs/gd_gd.o libgd/.libs/gd_gd2.o libgd/.libs/gd_gif_in.o libgd/.libs/gd_gif_out.o libgd/.libs/gd_interpolation.o libgd/.libs/gd_io_dp.o libgd/.libs/gd_io_file.o libgd/.libs/gd_io_ss.o libgd/.libs/gd_io.o libgd/.libs/gd_jpeg.o libgd/.libs/gd_matrix.o libgd/.libs/gd_pixelate.o libgd/.libs/gd_png.o libgd/.libs/gd_rotate.o libgd/.libs/gd_security.o libgd/.libs/gd_ss.o libgd/.libs/gd_tga.o libgd/.libs/gd_topal.o libgd/.libs/gd_transform.o libgd/.libs/gd_wbmp.o libgd/.libs/gd_webp.o libgd/.libs/gd_xbm.o libgd/.libs/gd.o libgd/.libs/gdcache.o libgd/.libs/gdfontg.o libgd/.libs/gdfontl.o libgd/.libs/gdfontmb.o libgd/.libs/gdfonts.o libgd/.libs/gdfontt.o libgd/.libs/gdft.o libgd/.libs/gdhelpers.o libgd/.libs/gdkanji.o libgd/.libs/gdtables.o libgd/.libs/gdxpm.o libgd/.libs/wbmp.o -lz -lpng16 -lavif -lwebp -ljpeg -lXpm -lX11 -lfreetype -Wl,-O1 -Wl,-soname -Wl,gd.so -o .libs/gd.so
+#10 14.32 creating gd.la
+#10 14.32 (cd .libs && rm -f gd.la && ln -s ../gd.la gd.la)
+#10 14.32 /bin/bash /usr/src/php/ext/gd/libtool --tag=CC --mode=install cp ./gd.la /usr/src/php/ext/gd/modules
+#10 14.33 cp ./.libs/gd.so /usr/src/php/ext/gd/modules/gd.so
+#10 14.33 cp ./.libs/gd.lai /usr/src/php/ext/gd/modules/gd.la
+#10 14.34 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/gd/modules
+#10 14.34 ----------------------------------------------------------------------
+#10 14.34 Libraries have been installed in:
+#10 14.34 /usr/src/php/ext/gd/modules
+#10 14.34
+#10 14.34 If you ever happen to want to link against installed libraries
+#10 14.34 in a given directory, LIBDIR, you must either use libtool, and
+#10 14.34 specify the full pathname of the library, or use the `-LLIBDIR'
+#10 14.34 flag during linking and do at least one of the following:
+#10 14.34 - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
+#10 14.34 during execution
+#10 14.34 - add LIBDIR to the `LD_RUN_PATH' environment variable
+#10 14.34 during linking
+#10 14.34 - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
+#10 14.34 - have your system administrator add LIBDIR to `/etc/ld.so.conf'
+#10 14.34
+#10 14.34 See any operating system documentation about shared libraries for
+#10 14.34 more information, such as the ld(1) and ld.so(8) manual pages.
+#10 14.34 ----------------------------------------------------------------------
+#10 14.34
+#10 14.34 Build complete.
+#10 14.34 Don't forget to run 'make test'.
+#10 14.34
+#10 14.35 + strip --strip-all modules/gd.so
+#10 14.36 Installing shared extensions: /usr/local/lib/php/extensions/no-debug-zts-20240924/
+#10 14.38 Installing header files: /usr/local/include/php/
+#10 14.46 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
+#10 14.46 find . -name \*.lo -o -name \*.o -o -name \*.dep | xargs rm -f
+#10 14.46 find . -name \*.la -o -name \*.a | xargs rm -f
+#10 14.46 find . -name \*.so | xargs rm -f
+#10 14.47 find . -name .libs -a -type d|xargs rm -rf
+#10 14.47 rm -f libphp.la modules/* libs/*
+#10 14.47 rm -f ext/opcache/jit/ir/gen_ir_fold_hash
+#10 14.47 rm -f ext/opcache/jit/ir/minilua
+#10 14.47 rm -f ext/opcache/jit/ir/ir_fold_hash.h
+#10 14.47 rm -f ext/opcache/jit/ir/ir_emit_x86.h
+#10 14.47 rm -f ext/opcache/jit/ir/ir_emit_aarch64.h
+#10 14.48 ### INSTALLING BUNDLED MODULE intl ###
+#10 14.50 Configuring for:
+#10 14.50 PHP Version: 8.4
+#10 14.50 PHP Api Version: 20240924
+#10 14.50 Zend Module Api No: 20240924
+#10 14.50 Zend Extension Api No: 420240924
+#10 14.76 checking for grep that handles long lines and -e... /usr/bin/grep
+#10 14.76 checking for egrep... /usr/bin/grep -E
+#10 14.76 checking for a sed that does not truncate output... /usr/bin/sed
+#10 14.77 checking build system type... aarch64-unknown-linux-gnu
+#10 14.78 checking host system type... aarch64-unknown-linux-gnu
+#10 14.78 checking target system type... aarch64-unknown-linux-gnu
+#10 14.78 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 14.79 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 14.80 checking for gawk... no
+#10 14.80 checking for nawk... nawk
+#10 14.80 checking if nawk is broken... no
+#10 14.80 checking for pkg-config... /usr/bin/pkg-config
+#10 14.80 checking pkg-config is at least version 0.9.0... yes
+#10 14.80 checking for cc... cc
+#10 14.81 checking whether the C compiler works... yes
+#10 14.82 checking for C compiler default output file name... a.out
+#10 14.82 checking for suffix of executables...
+#10 14.84 checking whether we are cross compiling... no
+#10 14.85 checking for suffix of object files... o
+#10 14.86 checking whether the compiler supports GNU C... yes
+#10 14.87 checking whether cc accepts -g... yes
+#10 14.88 checking for cc option to enable C11 features... none needed
+#10 14.90 checking how to run the C preprocessor... cc -E
+#10 14.92 checking for icc... no
+#10 14.92 checking for suncc... no
+#10 14.93 checking for system library directory... lib
+#10 14.93 checking if compiler supports -Wl,-rpath,... yes
+#10 14.95 checking for PHP prefix... /usr/local
+#10 14.95 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
+#10 14.95 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-zts-20240924
+#10 14.95 checking for PHP installed headers prefix... /usr/local/include/php
+#10 14.95 checking if debugging is enabled... no
+#10 14.95 checking if PHP is built with thread safety (ZTS)... yes
+#10 14.96
+#10 14.96 Configuring extension
+#10 14.96 checking whether to enable internationalization support... yes, shared
+#10 14.96 checking for icu-uc >= 50.1 icu-io icu-i18n... yes
+#10 14.98 checking for g++... g++
+#10 14.98 checking whether the compiler supports GNU C++... yes
+#10 15.00 checking whether g++ accepts -g... yes
+#10 15.01 checking for g++ option to enable C++11 features... none needed
+#10 15.04 checking how to run the C++ preprocessor... g++ -E
+#10 15.06 checking if intl requires -std=gnu++17... no
+#10 15.06 checking whether g++ supports C++11 features with -std=c++11... yes
+#10 15.09
+#10 15.09 Configuring libtool
+#10 15.09 checking for a sed that does not truncate output... /usr/bin/sed
+#10 15.09 checking for ld used by cc... /usr/bin/ld
+#10 15.09 checking if the linker (/usr/bin/ld) is GNU ld... yes
+#10 15.09 checking for /usr/bin/ld option to reload object files... -r
+#10 15.09 checking for BSD-compatible nm... /usr/bin/nm -B
+#10 15.09 checking whether ln -s works... yes
+#10 15.09 checking how to recognize dependent libraries... pass_all
+#10 15.09 checking for stdio.h... yes
+#10 15.10 checking for stdlib.h... yes
+#10 15.11 checking for string.h... yes
+#10 15.12 checking for inttypes.h... yes
+#10 15.13 checking for stdint.h... yes
+#10 15.14 checking for strings.h... yes
+#10 15.14 checking for sys/stat.h... yes
+#10 15.15 checking for sys/types.h... yes
+#10 15.16 checking for unistd.h... yes
+#10 15.17 checking for dlfcn.h... yes
+#10 15.18 checking how to run the C++ preprocessor... g++ -E
+#10 15.20 checking the maximum length of command line arguments... 1572864
+#10 15.20 checking command to parse /usr/bin/nm -B output from cc object... ok
+#10 15.23 checking for objdir... .libs
+#10 15.23 checking for ar... ar
+#10 15.23 checking for ranlib... ranlib
+#10 15.23 checking for strip... strip
+#10 15.26 checking if cc supports -fno-rtti -fno-exceptions... no
+#10 15.26 checking for cc option to produce PIC... -fPIC
+#10 15.26 checking if cc PIC flag -fPIC works... yes
+#10 15.27 checking if cc static flag -static works... yes
+#10 15.30 checking if cc supports -c -o file.o... yes
+#10 15.31 checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
+#10 15.31 checking whether -lc should be explicitly linked in... no
+#10 15.32 checking dynamic linker characteristics... GNU/Linux ld.so
+#10 15.32 checking how to hardcode library paths into programs... immediate
+#10 15.32 checking whether stripping libraries is possible... yes
+#10 15.33 checking if libtool supports shared libraries... yes
+#10 15.33 checking whether to build shared libraries... yes
+#10 15.33 checking whether to build static libraries... no
+#10 15.36
+#10 15.36 creating libtool
+#10 15.37 appending configuration tag "CXX" to libtool
+#10 15.40 checking for ld used by g++... /usr/bin/ld
+#10 15.40 checking if the linker (/usr/bin/ld) is GNU ld... yes
+#10 15.40 checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+#10 15.42 checking for g++ option to produce PIC... -fPIC
+#10 15.42 checking if g++ PIC flag -fPIC works... yes
+#10 15.42 checking if g++ static flag -static works... yes
+#10 15.45 checking if g++ supports -c -o file.o... yes
+#10 15.46 checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+#10 15.46 checking dynamic linker characteristics... GNU/Linux ld.so
+#10 15.46 (cached) (cached) checking how to hardcode library paths into programs... immediate
+#10 15.50
+#10 15.50 Generating files
+#10 15.51 configure: creating build directories
+#10 15.52 configure: creating Makefile
+#10 15.52 configure: patching config.h.in
+#10 15.52 configure: creating ./config.status
+#10 15.53 config.status: creating config.h
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_attr.c -o collator/collator_attr.lo -MMD -MF collator/collator_attr.dep -MT collator/collator_attr.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_class.c -o collator/collator_class.lo -MMD -MF collator/collator_class.dep -MT collator/collator_class.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_compare.c -o collator/collator_compare.lo -MMD -MF collator/collator_compare.dep -MT collator/collator_compare.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_convert.c -o collator/collator_convert.lo -MMD -MF collator/collator_convert.dep -MT collator/collator_convert.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_create.c -o collator/collator_create.lo -MMD -MF collator/collator_create.dep -MT collator/collator_create.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_error.c -o collator/collator_error.lo -MMD -MF collator/collator_error.dep -MT collator/collator_error.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_is_numeric.c -o collator/collator_is_numeric.lo -MMD -MF collator/collator_is_numeric.dep -MT collator/collator_is_numeric.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_locale.c -o collator/collator_locale.lo -MMD -MF collator/collator_locale.dep -MT collator/collator_locale.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_sort.c -o collator/collator_sort.lo -MMD -MF collator/collator_sort.dep -MT collator/collator_sort.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/common/common_error.c -o common/common_error.lo -MMD -MF common/common_error.dep -MT common/common_error.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/converter/converter.c -o converter/converter.lo -MMD -MF converter/converter.dep -MT converter/converter.lo
+#10 15.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_attr.c -o dateformat/dateformat_attr.lo -MMD -MF dateformat/dateformat_attr.dep -MT dateformat/dateformat_attr.lo
+#10 15.62 mkdir collator/.libs
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_compare.c -MMD -MF collator/collator_compare.dep -MT collator/collator_compare.lo -fPIC -DPIC -o collator/.libs/collator_compare.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_attr.c -MMD -MF collator/collator_attr.dep -MT collator/collator_attr.lo -fPIC -DPIC -o collator/.libs/collator_attr.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_sort.c -MMD -MF collator/collator_sort.dep -MT collator/collator_sort.lo -fPIC -DPIC -o collator/.libs/collator_sort.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_convert.c -MMD -MF collator/collator_convert.dep -MT collator/collator_convert.lo -fPIC -DPIC -o collator/.libs/collator_convert.o
+#10 15.63 mkdir converter/.libs
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/converter/converter.c -MMD -MF converter/converter.dep -MT converter/converter.lo -fPIC -DPIC -o converter/.libs/converter.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_create.c -MMD -MF collator/collator_create.dep -MT collator/collator_create.lo -fPIC -DPIC -o collator/.libs/collator_create.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_error.c -MMD -MF collator/collator_error.dep -MT collator/collator_error.lo -fPIC -DPIC -o collator/.libs/collator_error.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_is_numeric.c -MMD -MF collator/collator_is_numeric.dep -MT collator/collator_is_numeric.lo -fPIC -DPIC -o collator/.libs/collator_is_numeric.o
+#10 15.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_locale.c -MMD -MF collator/collator_locale.dep -MT collator/collator_locale.lo -fPIC -DPIC -o collator/.libs/collator_locale.o
+#10 15.63 mkdir dateformat/.libs
+#10 15.64 mkdir common/.libs
+#10 15.64 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_attr.c -MMD -MF dateformat/dateformat_attr.dep -MT dateformat/dateformat_attr.lo -fPIC -DPIC -o dateformat/.libs/dateformat_attr.o
+#10 15.64 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/collator/collator_class.c -MMD -MF collator/collator_class.dep -MT collator/collator_class.lo -fPIC -DPIC -o collator/.libs/collator_class.o
+#10 15.64 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/common/common_error.c -MMD -MF common/common_error.dep -MT common/common_error.lo -fPIC -DPIC -o common/.libs/common_error.o
+#10 15.85 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_class.c -o dateformat/dateformat_class.lo -MMD -MF dateformat/dateformat_class.dep -MT dateformat/dateformat_class.lo
+#10 15.86 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_data.c -o dateformat/dateformat_data.lo -MMD -MF dateformat/dateformat_data.dep -MT dateformat/dateformat_data.lo
+#10 15.88 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_format.c -o dateformat/dateformat_format.lo -MMD -MF dateformat/dateformat_format.dep -MT dateformat/dateformat_format.lo
+#10 15.88 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_parse.c -o dateformat/dateformat_parse.lo -MMD -MF dateformat/dateformat_parse.dep -MT dateformat/dateformat_parse.lo
+#10 15.89 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat.c -o dateformat/dateformat.lo -MMD -MF dateformat/dateformat.dep -MT dateformat/dateformat.lo
+#10 15.89 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_attr.c -o formatter/formatter_attr.lo -MMD -MF formatter/formatter_attr.dep -MT formatter/formatter_attr.lo
+#10 15.89 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_class.c -o formatter/formatter_class.lo -MMD -MF formatter/formatter_class.dep -MT formatter/formatter_class.lo
+#10 15.91 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_data.c -o formatter/formatter_data.lo -MMD -MF formatter/formatter_data.dep -MT formatter/formatter_data.lo
+#10 15.92 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_format.c -o formatter/formatter_format.lo -MMD -MF formatter/formatter_format.dep -MT formatter/formatter_format.lo
+#10 15.93 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_main.c -o formatter/formatter_main.lo -MMD -MF formatter/formatter_main.dep -MT formatter/formatter_main.lo
+#10 15.93 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_class.c -MMD -MF dateformat/dateformat_class.dep -MT dateformat/dateformat_class.lo -fPIC -DPIC -o dateformat/.libs/dateformat_class.o
+#10 15.93 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_data.c -MMD -MF dateformat/dateformat_data.dep -MT dateformat/dateformat_data.lo -fPIC -DPIC -o dateformat/.libs/dateformat_data.o
+#10 15.95 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_parse.c -o formatter/formatter_parse.lo -MMD -MF formatter/formatter_parse.dep -MT formatter/formatter_parse.lo
+#10 15.97 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat.c -MMD -MF dateformat/dateformat.dep -MT dateformat/dateformat.lo -fPIC -DPIC -o dateformat/.libs/dateformat.o
+#10 15.97 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_parse.c -MMD -MF dateformat/dateformat_parse.dep -MT dateformat/dateformat_parse.lo -fPIC -DPIC -o dateformat/.libs/dateformat_parse.o
+#10 15.98 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/dateformat/dateformat_format.c -MMD -MF dateformat/dateformat_format.dep -MT dateformat/dateformat_format.lo -fPIC -DPIC -o dateformat/.libs/dateformat_format.o
+#10 15.98 mkdir formatter/.libs
+#10 15.98 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_attr.c -MMD -MF formatter/formatter_attr.dep -MT formatter/formatter_attr.lo -fPIC -DPIC -o formatter/.libs/formatter_attr.o
+#10 15.98 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_class.c -MMD -MF formatter/formatter_class.dep -MT formatter/formatter_class.lo -fPIC -DPIC -o formatter/.libs/formatter_class.o
+#10 15.99 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_format.c -MMD -MF formatter/formatter_format.dep -MT formatter/formatter_format.lo -fPIC -DPIC -o formatter/.libs/formatter_format.o
+#10 15.99 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_data.c -MMD -MF formatter/formatter_data.dep -MT formatter/formatter_data.lo -fPIC -DPIC -o formatter/.libs/formatter_data.o
+#10 16.01 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_main.c -MMD -MF formatter/formatter_main.dep -MT formatter/formatter_main.lo -fPIC -DPIC -o formatter/.libs/formatter_main.o
+#10 16.01 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/formatter/formatter_parse.c -MMD -MF formatter/formatter_parse.dep -MT formatter/formatter_parse.lo -fPIC -DPIC -o formatter/.libs/formatter_parse.o
+#10 16.12 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/grapheme/grapheme_string.c -o grapheme/grapheme_string.lo -MMD -MF grapheme/grapheme_string.dep -MT grapheme/grapheme_string.lo
+#10 16.16 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/grapheme/grapheme_util.c -o grapheme/grapheme_util.lo -MMD -MF grapheme/grapheme_util.dep -MT grapheme/grapheme_util.lo
+#10 16.17 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/idn/idn.c -o idn/idn.lo -MMD -MF idn/idn.dep -MT idn/idn.lo
+#10 16.19 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/intl_convert.c -o intl_convert.lo -MMD -MF intl_convert.dep -MT intl_convert.lo
+#10 16.21 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/intl_error.c -o intl_error.lo -MMD -MF intl_error.dep -MT intl_error.lo
+#10 16.22 mkdir grapheme/.libs
+#10 16.22 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/locale/locale_class.c -o locale/locale_class.lo -MMD -MF locale/locale_class.dep -MT locale/locale_class.lo
+#10 16.22 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/grapheme/grapheme_util.c -MMD -MF grapheme/grapheme_util.dep -MT grapheme/grapheme_util.lo -fPIC -DPIC -o grapheme/.libs/grapheme_util.o
+#10 16.24 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/locale/locale_methods.c -o locale/locale_methods.lo -MMD -MF locale/locale_methods.dep -MT locale/locale_methods.lo
+#10 16.24 mkdir idn/.libs
+#10 16.24 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/locale/locale.c -o locale/locale.lo -MMD -MF locale/locale.dep -MT locale/locale.lo
+#10 16.24 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/idn/idn.c -MMD -MF idn/idn.dep -MT idn/idn.lo -fPIC -DPIC -o idn/.libs/idn.o
+#10 16.24 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_attr.c -o msgformat/msgformat_attr.lo -MMD -MF msgformat/msgformat_attr.dep -MT msgformat/msgformat_attr.lo
+#10 16.24 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/grapheme/grapheme_string.c -MMD -MF grapheme/grapheme_string.dep -MT grapheme/grapheme_string.lo -fPIC -DPIC -o grapheme/.libs/grapheme_string.o
+#10 16.24 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_class.c -o msgformat/msgformat_class.lo -MMD -MF msgformat/msgformat_class.dep -MT msgformat/msgformat_class.lo
+#10 16.28 mkdir .libs
+#10 16.28 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/intl_convert.c -MMD -MF intl_convert.dep -MT intl_convert.lo -fPIC -DPIC -o .libs/intl_convert.o
+#10 16.29 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_data.c -o msgformat/msgformat_data.lo -MMD -MF msgformat/msgformat_data.dep -MT msgformat/msgformat_data.lo
+#10 16.30 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/intl_error.c -MMD -MF intl_error.dep -MT intl_error.lo -fPIC -DPIC -o .libs/intl_error.o
+#10 16.31 mkdir locale/.libs
+#10 16.32 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/locale/locale_class.c -MMD -MF locale/locale_class.dep -MT locale/locale_class.lo -fPIC -DPIC -o locale/.libs/locale_class.o
+#10 16.33 mkdir msgformat/.libs
+#10 16.33 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/locale/locale_methods.c -MMD -MF locale/locale_methods.dep -MT locale/locale_methods.lo -fPIC -DPIC -o locale/.libs/locale_methods.o
+#10 16.33 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_attr.c -MMD -MF msgformat/msgformat_attr.dep -MT msgformat/msgformat_attr.lo -fPIC -DPIC -o msgformat/.libs/msgformat_attr.o
+#10 16.33 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/locale/locale.c -MMD -MF locale/locale.dep -MT locale/locale.lo -fPIC -DPIC -o locale/.libs/locale.o
+#10 16.33 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_class.c -MMD -MF msgformat/msgformat_class.dep -MT msgformat/msgformat_class.lo -fPIC -DPIC -o msgformat/.libs/msgformat_class.o
+#10 16.36 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_data.c -MMD -MF msgformat/msgformat_data.dep -MT msgformat/msgformat_data.lo -fPIC -DPIC -o msgformat/.libs/msgformat_data.o
+#10 16.47 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_format.c -o msgformat/msgformat_format.lo -MMD -MF msgformat/msgformat_format.dep -MT msgformat/msgformat_format.lo
+#10 16.47 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_parse.c -o msgformat/msgformat_parse.lo -MMD -MF msgformat/msgformat_parse.dep -MT msgformat/msgformat_parse.lo
+#10 16.49 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat.c -o msgformat/msgformat.lo -MMD -MF msgformat/msgformat.dep -MT msgformat/msgformat.lo
+#10 16.52 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/normalizer/normalizer_class.c -o normalizer/normalizer_class.lo -MMD -MF normalizer/normalizer_class.dep -MT normalizer/normalizer_class.lo
+#10 16.53 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_format.c -MMD -MF msgformat/msgformat_format.dep -MT msgformat/msgformat_format.lo -fPIC -DPIC -o msgformat/.libs/msgformat_format.o
+#10 16.53 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/normalizer/normalizer_normalize.c -o normalizer/normalizer_normalize.lo -MMD -MF normalizer/normalizer_normalize.dep -MT normalizer/normalizer_normalize.lo
+#10 16.55 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat_parse.c -MMD -MF msgformat/msgformat_parse.dep -MT msgformat/msgformat_parse.lo -fPIC -DPIC -o msgformat/.libs/msgformat_parse.o
+#10 16.56 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/php_intl.c -o php_intl.lo -MMD -MF php_intl.dep -MT php_intl.lo
+#10 16.56 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_class.c -o resourcebundle/resourcebundle_class.lo -MMD -MF resourcebundle/resourcebundle_class.dep -MT resourcebundle/resourcebundle_class.lo
+#10 16.56 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_iterator.c -o resourcebundle/resourcebundle_iterator.lo -MMD -MF resourcebundle/resourcebundle_iterator.dep -MT resourcebundle/resourcebundle_iterator.lo
+#10 16.56 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle.c -o resourcebundle/resourcebundle.lo -MMD -MF resourcebundle/resourcebundle.dep -MT resourcebundle/resourcebundle.lo
+#10 16.57 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_class.c -o spoofchecker/spoofchecker_class.lo -MMD -MF spoofchecker/spoofchecker_class.dep -MT spoofchecker/spoofchecker_class.lo
+#10 16.59 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/msgformat/msgformat.c -MMD -MF msgformat/msgformat.dep -MT msgformat/msgformat.lo -fPIC -DPIC -o msgformat/.libs/msgformat.o
+#10 16.61 mkdir normalizer/.libs
+#10 16.61 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/normalizer/normalizer_class.c -MMD -MF normalizer/normalizer_class.dep -MT normalizer/normalizer_class.lo -fPIC -DPIC -o normalizer/.libs/normalizer_class.o
+#10 16.63 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_create.c -o spoofchecker/spoofchecker_create.lo -MMD -MF spoofchecker/spoofchecker_create.dep -MT spoofchecker/spoofchecker_create.lo
+#10 16.63 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/normalizer/normalizer_normalize.c -MMD -MF normalizer/normalizer_normalize.dep -MT normalizer/normalizer_normalize.lo -fPIC -DPIC -o normalizer/.libs/normalizer_normalize.o
+#10 16.65 mkdir resourcebundle/.libs
+#10 16.65 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_class.c -MMD -MF resourcebundle/resourcebundle_class.dep -MT resourcebundle/resourcebundle_class.lo -fPIC -DPIC -o resourcebundle/.libs/resourcebundle_class.o
+#10 16.65 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/php_intl.c -MMD -MF php_intl.dep -MT php_intl.lo -fPIC -DPIC -o .libs/php_intl.o
+#10 16.66 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle_iterator.c -MMD -MF resourcebundle/resourcebundle_iterator.dep -MT resourcebundle/resourcebundle_iterator.lo -fPIC -DPIC -o resourcebundle/.libs/resourcebundle_iterator.o
+#10 16.66 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/resourcebundle/resourcebundle.c -MMD -MF resourcebundle/resourcebundle.dep -MT resourcebundle/resourcebundle.lo -fPIC -DPIC -o resourcebundle/.libs/resourcebundle.o
+#10 16.67 mkdir spoofchecker/.libs
+#10 16.67 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_class.c -MMD -MF spoofchecker/spoofchecker_class.dep -MT spoofchecker/spoofchecker_class.lo -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_class.o
+#10 16.70 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_create.c -MMD -MF spoofchecker/spoofchecker_create.dep -MT spoofchecker/spoofchecker_create.lo -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_create.o
+#10 16.74 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_main.c -o spoofchecker/spoofchecker_main.lo -MMD -MF spoofchecker/spoofchecker_main.dep -MT spoofchecker/spoofchecker_main.lo
+#10 16.79 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/transliterator/transliterator_class.c -o transliterator/transliterator_class.lo -MMD -MF transliterator/transliterator_class.dep -MT transliterator/transliterator_class.lo
+#10 16.79 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/spoofchecker/spoofchecker_main.c -MMD -MF spoofchecker/spoofchecker_main.dep -MT spoofchecker/spoofchecker_main.lo -fPIC -DPIC -o spoofchecker/.libs/spoofchecker_main.o
+#10 16.84 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/transliterator/transliterator_methods.c -o transliterator/transliterator_methods.lo -MMD -MF transliterator/transliterator_methods.dep -MT transliterator/transliterator_methods.lo
+#10 16.84 mkdir transliterator/.libs
+#10 16.85 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/transliterator/transliterator_class.c -MMD -MF transliterator/transliterator_class.dep -MT transliterator/transliterator_class.lo -fPIC -DPIC -o transliterator/.libs/transliterator_class.o
+#10 16.86 /bin/bash /usr/src/php/ext/intl/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/uchar/uchar.c -o uchar/uchar.lo -MMD -MF uchar/uchar.dep -MT uchar/uchar.lo
+#10 16.86 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/intl_convertcpp.cpp -o intl_convertcpp.lo -MMD -MF intl_convertcpp.dep -MT intl_convertcpp.lo
+#10 16.88 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_enum.cpp -o common/common_enum.lo -MMD -MF common/common_enum.dep -MT common/common_enum.lo
+#10 16.90 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_date.cpp -o common/common_date.lo -MMD -MF common/common_date.dep -MT common/common_date.lo
+#10 16.91 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_format_object.cpp -o dateformat/dateformat_format_object.lo -MMD -MF dateformat/dateformat_format_object.dep -MT dateformat/dateformat_format_object.lo
+#10 16.92 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/transliterator/transliterator_methods.c -MMD -MF transliterator/transliterator_methods.dep -MT transliterator/transliterator_methods.lo -fPIC -DPIC -o transliterator/.libs/transliterator_methods.o
+#10 16.92 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_create.cpp -o dateformat/dateformat_create.lo -MMD -MF dateformat/dateformat_create.dep -MT dateformat/dateformat_create.lo
+#10 16.94 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_attrcpp.cpp -o dateformat/dateformat_attrcpp.lo -MMD -MF dateformat/dateformat_attrcpp.dep -MT dateformat/dateformat_attrcpp.lo
+#10 16.94 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_helpers.cpp -o dateformat/dateformat_helpers.lo -MMD -MF dateformat/dateformat_helpers.dep -MT dateformat/dateformat_helpers.lo
+#10 16.95 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/intl_convertcpp.cpp -MMD -MF intl_convertcpp.dep -MT intl_convertcpp.lo -fPIC -DPIC -o .libs/intl_convertcpp.o
+#10 16.96 mkdir uchar/.libs
+#10 16.96 cc -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/intl/uchar/uchar.c -MMD -MF uchar/uchar.dep -MT uchar/uchar.lo -fPIC -DPIC -o uchar/.libs/uchar.o
+#10 16.96 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/datepatterngenerator_class.cpp -o dateformat/datepatterngenerator_class.lo -MMD -MF dateformat/datepatterngenerator_class.dep -MT dateformat/datepatterngenerator_class.lo
+#10 16.98 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_enum.cpp -MMD -MF common/common_enum.dep -MT common/common_enum.lo -fPIC -DPIC -o common/.libs/common_enum.o
+#10 16.98 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/common/common_date.cpp -MMD -MF common/common_date.dep -MT common/common_date.lo -fPIC -DPIC -o common/.libs/common_date.o
+#10 17.00 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_format_object.cpp -MMD -MF dateformat/dateformat_format_object.dep -MT dateformat/dateformat_format_object.lo -fPIC -DPIC -o dateformat/.libs/dateformat_format_object.o
+#10 17.01 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_create.cpp -MMD -MF dateformat/dateformat_create.dep -MT dateformat/dateformat_create.lo -fPIC -DPIC -o dateformat/.libs/dateformat_create.o
+#10 17.02 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_attrcpp.cpp -MMD -MF dateformat/dateformat_attrcpp.dep -MT dateformat/dateformat_attrcpp.lo -fPIC -DPIC -o dateformat/.libs/dateformat_attrcpp.o
+#10 17.03 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/datepatterngenerator_methods.cpp -o dateformat/datepatterngenerator_methods.lo -MMD -MF dateformat/datepatterngenerator_methods.dep -MT dateformat/datepatterngenerator_methods.lo
+#10 17.04 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/dateformat_helpers.cpp -MMD -MF dateformat/dateformat_helpers.dep -MT dateformat/dateformat_helpers.lo -fPIC -DPIC -o dateformat/.libs/dateformat_helpers.o
+#10 17.05 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/datepatterngenerator_class.cpp -MMD -MF dateformat/datepatterngenerator_class.dep -MT dateformat/datepatterngenerator_class.lo -fPIC -DPIC -o dateformat/.libs/datepatterngenerator_class.o
+#10 17.06 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/msgformat/msgformat_helpers.cpp -o msgformat/msgformat_helpers.lo -MMD -MF msgformat/msgformat_helpers.dep -MT msgformat/msgformat_helpers.lo
+#10 17.10 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/dateformat/datepatterngenerator_methods.cpp -MMD -MF dateformat/datepatterngenerator_methods.dep -MT dateformat/datepatterngenerator_methods.lo -fPIC -DPIC -o dateformat/.libs/datepatterngenerator_methods.o
+#10 17.11 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/msgformat/msgformat_helpers.cpp -MMD -MF msgformat/msgformat_helpers.dep -MT msgformat/msgformat_helpers.lo -fPIC -DPIC -o msgformat/.libs/msgformat_helpers.o
+#10 17.22 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_class.cpp -o timezone/timezone_class.lo -MMD -MF timezone/timezone_class.dep -MT timezone/timezone_class.lo
+#10 17.28 mkdir timezone/.libs
+#10 17.28 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_class.cpp -MMD -MF timezone/timezone_class.dep -MT timezone/timezone_class.lo -fPIC -DPIC -o timezone/.libs/timezone_class.o
+#10 17.41 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_methods.cpp -o timezone/timezone_methods.lo -MMD -MF timezone/timezone_methods.dep -MT timezone/timezone_methods.lo
+#10 17.47 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/timezone/timezone_methods.cpp -MMD -MF timezone/timezone_methods.dep -MT timezone/timezone_methods.lo -fPIC -DPIC -o timezone/.libs/timezone_methods.o
+#10 17.51 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_class.cpp -o calendar/calendar_class.lo -MMD -MF calendar/calendar_class.dep -MT calendar/calendar_class.lo
+#10 17.55 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_methods.cpp -o calendar/calendar_methods.lo -MMD -MF calendar/calendar_methods.dep -MT calendar/calendar_methods.lo
+#10 17.57 mkdir calendar/.libs
+#10 17.57 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_class.cpp -MMD -MF calendar/calendar_class.dep -MT calendar/calendar_class.lo -fPIC -DPIC -o calendar/.libs/calendar_class.o
+#10 17.59 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/gregoriancalendar_methods.cpp -o calendar/gregoriancalendar_methods.lo -MMD -MF calendar/gregoriancalendar_methods.dep -MT calendar/gregoriancalendar_methods.lo
+#10 17.59 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_class.cpp -o breakiterator/breakiterator_class.lo -MMD -MF breakiterator/breakiterator_class.dep -MT breakiterator/breakiterator_class.lo
+#10 17.60 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/calendar_methods.cpp -MMD -MF calendar/calendar_methods.dep -MT calendar/calendar_methods.lo -fPIC -DPIC -o calendar/.libs/calendar_methods.o
+#10 17.60 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_iterators.cpp -o breakiterator/breakiterator_iterators.lo -MMD -MF breakiterator/breakiterator_iterators.dep -MT breakiterator/breakiterator_iterators.lo
+#10 17.63 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_methods.cpp -o breakiterator/breakiterator_methods.lo -MMD -MF breakiterator/breakiterator_methods.dep -MT breakiterator/breakiterator_methods.lo
+#10 17.65 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/calendar/gregoriancalendar_methods.cpp -MMD -MF calendar/gregoriancalendar_methods.dep -MT calendar/gregoriancalendar_methods.lo -fPIC -DPIC -o calendar/.libs/gregoriancalendar_methods.o
+#10 17.65 mkdir breakiterator/.libs
+#10 17.66 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_class.cpp -MMD -MF breakiterator/breakiterator_class.dep -MT breakiterator/breakiterator_class.lo -fPIC -DPIC -o breakiterator/.libs/breakiterator_class.o
+#10 17.66 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_iterators.cpp -MMD -MF breakiterator/breakiterator_iterators.dep -MT breakiterator/breakiterator_iterators.lo -fPIC -DPIC -o breakiterator/.libs/breakiterator_iterators.o
+#10 17.68 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/breakiterator_methods.cpp -MMD -MF breakiterator/breakiterator_methods.dep -MT breakiterator/breakiterator_methods.lo -fPIC -DPIC -o breakiterator/.libs/breakiterator_methods.o
+#10 17.68 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp -o breakiterator/rulebasedbreakiterator_methods.lo -MMD -MF breakiterator/rulebasedbreakiterator_methods.dep -MT breakiterator/rulebasedbreakiterator_methods.lo
+#10 17.72 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_internal.cpp -o breakiterator/codepointiterator_internal.lo -MMD -MF breakiterator/codepointiterator_internal.dep -MT breakiterator/codepointiterator_internal.lo
+#10 17.75 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp -MMD -MF breakiterator/rulebasedbreakiterator_methods.dep -MT breakiterator/rulebasedbreakiterator_methods.lo -fPIC -DPIC -o breakiterator/.libs/rulebasedbreakiterator_methods.o
+#10 17.77 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_internal.cpp -MMD -MF breakiterator/codepointiterator_internal.dep -MT breakiterator/codepointiterator_internal.lo -fPIC -DPIC -o breakiterator/.libs/codepointiterator_internal.o
+#10 18.00 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=compile g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_methods.cpp -o breakiterator/codepointiterator_methods.lo -MMD -MF breakiterator/codepointiterator_methods.dep -MT breakiterator/codepointiterator_methods.lo
+#10 18.07 g++ -I. -I/usr/src/php/ext/intl -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -g -O2 -DU_NO_DEFAULT_INCLUDE_UTF_HEADERS=1 -DU_HIDE_OBSOLETE_UTF_OLD_H=1 -Wno-write-strings -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -std=c++11 -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit -c /usr/src/php/ext/intl/breakiterator/codepointiterator_methods.cpp -MMD -MF breakiterator/codepointiterator_methods.dep -MT breakiterator/codepointiterator_methods.lo -fPIC -DPIC -o breakiterator/.libs/codepointiterator_methods.o
+#10 21.23 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=link g++ -shared -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wl,-O1 -pie -o intl.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/intl/modules collator/collator_attr.lo collator/collator_class.lo collator/collator_compare.lo collator/collator_convert.lo collator/collator_create.lo collator/collator_error.lo collator/collator_is_numeric.lo collator/collator_locale.lo collator/collator_sort.lo common/common_error.lo converter/converter.lo dateformat/dateformat_attr.lo dateformat/dateformat_class.lo dateformat/dateformat_data.lo dateformat/dateformat_format.lo dateformat/dateformat_parse.lo dateformat/dateformat.lo formatter/formatter_attr.lo formatter/formatter_class.lo formatter/formatter_data.lo formatter/formatter_format.lo formatter/formatter_main.lo formatter/formatter_parse.lo grapheme/grapheme_string.lo grapheme/grapheme_util.lo idn/idn.lo intl_convert.lo intl_error.lo locale/locale_class.lo locale/locale_methods.lo locale/locale.lo msgformat/msgformat_attr.lo msgformat/msgformat_class.lo msgformat/msgformat_data.lo msgformat/msgformat_format.lo msgformat/msgformat_parse.lo msgformat/msgformat.lo normalizer/normalizer_class.lo normalizer/normalizer_normalize.lo php_intl.lo resourcebundle/resourcebundle_class.lo resourcebundle/resourcebundle_iterator.lo resourcebundle/resourcebundle.lo spoofchecker/spoofchecker_class.lo spoofchecker/spoofchecker_create.lo spoofchecker/spoofchecker_main.lo transliterator/transliterator_class.lo transliterator/transliterator_methods.lo uchar/uchar.lo intl_convertcpp.lo common/common_enum.lo common/common_date.lo dateformat/dateformat_format_object.lo dateformat/dateformat_create.lo dateformat/dateformat_attrcpp.lo dateformat/dateformat_helpers.lo dateformat/datepatterngenerator_class.lo dateformat/datepatterngenerator_methods.lo msgformat/msgformat_helpers.lo timezone/timezone_class.lo timezone/timezone_methods.lo calendar/calendar_class.lo calendar/calendar_methods.lo calendar/gregoriancalendar_methods.lo breakiterator/breakiterator_class.lo breakiterator/breakiterator_iterators.lo breakiterator/breakiterator_methods.lo breakiterator/rulebasedbreakiterator_methods.lo breakiterator/codepointiterator_internal.lo breakiterator/codepointiterator_methods.lo -licuio -licui18n -licuuc -licudata
+#10 21.35 g++ -shared -nostdlib /usr/lib/gcc/aarch64-linux-gnu/12/../../../aarch64-linux-gnu/crti.o /usr/lib/gcc/aarch64-linux-gnu/12/crtbeginS.o collator/.libs/collator_attr.o collator/.libs/collator_class.o collator/.libs/collator_compare.o collator/.libs/collator_convert.o collator/.libs/collator_create.o collator/.libs/collator_error.o collator/.libs/collator_is_numeric.o collator/.libs/collator_locale.o collator/.libs/collator_sort.o common/.libs/common_error.o converter/.libs/converter.o dateformat/.libs/dateformat_attr.o dateformat/.libs/dateformat_class.o dateformat/.libs/dateformat_data.o dateformat/.libs/dateformat_format.o dateformat/.libs/dateformat_parse.o dateformat/.libs/dateformat.o formatter/.libs/formatter_attr.o formatter/.libs/formatter_class.o formatter/.libs/formatter_data.o formatter/.libs/formatter_format.o formatter/.libs/formatter_main.o formatter/.libs/formatter_parse.o grapheme/.libs/grapheme_string.o grapheme/.libs/grapheme_util.o idn/.libs/idn.o .libs/intl_convert.o .libs/intl_error.o locale/.libs/locale_class.o locale/.libs/locale_methods.o locale/.libs/locale.o msgformat/.libs/msgformat_attr.o msgformat/.libs/msgformat_class.o msgformat/.libs/msgformat_data.o msgformat/.libs/msgformat_format.o msgformat/.libs/msgformat_parse.o msgformat/.libs/msgformat.o normalizer/.libs/normalizer_class.o normalizer/.libs/normalizer_normalize.o .libs/php_intl.o resourcebundle/.libs/resourcebundle_class.o resourcebundle/.libs/resourcebundle_iterator.o resourcebundle/.libs/resourcebundle.o spoofchecker/.libs/spoofchecker_class.o spoofchecker/.libs/spoofchecker_create.o spoofchecker/.libs/spoofchecker_main.o transliterator/.libs/transliterator_class.o transliterator/.libs/transliterator_methods.o uchar/.libs/uchar.o .libs/intl_convertcpp.o common/.libs/common_enum.o common/.libs/common_date.o dateformat/.libs/dateformat_format_object.o dateformat/.libs/dateformat_create.o dateformat/.libs/dateformat_attrcpp.o dateformat/.libs/dateformat_helpers.o dateformat/.libs/datepatterngenerator_class.o dateformat/.libs/datepatterngenerator_methods.o msgformat/.libs/msgformat_helpers.o timezone/.libs/timezone_class.o timezone/.libs/timezone_methods.o calendar/.libs/calendar_class.o calendar/.libs/calendar_methods.o calendar/.libs/gregoriancalendar_methods.o breakiterator/.libs/breakiterator_class.o breakiterator/.libs/breakiterator_iterators.o breakiterator/.libs/breakiterator_methods.o breakiterator/.libs/rulebasedbreakiterator_methods.o breakiterator/.libs/codepointiterator_internal.o breakiterator/.libs/codepointiterator_methods.o -licuio -licui18n -licuuc -licudata -L/usr/lib/gcc/aarch64-linux-gnu/12 -L/usr/lib/gcc/aarch64-linux-gnu/12/../../../aarch64-linux-gnu -L/usr/lib/gcc/aarch64-linux-gnu/12/../../../../lib -L/lib/aarch64-linux-gnu -L/lib/../lib -L/usr/lib/aarch64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/aarch64-linux-gnu/12/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/aarch64-linux-gnu/12/crtendS.o /usr/lib/gcc/aarch64-linux-gnu/12/../../../aarch64-linux-gnu/crtn.o -Wl,-O1 -Wl,-soname -Wl,intl.so -o .libs/intl.so
+#10 21.39 creating intl.la
+#10 21.40 (cd .libs && rm -f intl.la && ln -s ../intl.la intl.la)
+#10 21.40 /bin/bash /usr/src/php/ext/intl/libtool --tag=CXX --mode=install cp ./intl.la /usr/src/php/ext/intl/modules
+#10 21.41 cp ./.libs/intl.so /usr/src/php/ext/intl/modules/intl.so
+#10 21.41 cp ./.libs/intl.lai /usr/src/php/ext/intl/modules/intl.la
+#10 21.42 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/intl/modules
+#10 21.42 ----------------------------------------------------------------------
+#10 21.42 Libraries have been installed in:
+#10 21.42 /usr/src/php/ext/intl/modules
+#10 21.42
+#10 21.42 If you ever happen to want to link against installed libraries
+#10 21.42 in a given directory, LIBDIR, you must either use libtool, and
+#10 21.42 specify the full pathname of the library, or use the `-LLIBDIR'
+#10 21.42 flag during linking and do at least one of the following:
+#10 21.42 - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
+#10 21.42 during execution
+#10 21.42 - add LIBDIR to the `LD_RUN_PATH' environment variable
+#10 21.42 during linking
+#10 21.42 - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
+#10 21.42 - have your system administrator add LIBDIR to `/etc/ld.so.conf'
+#10 21.42
+#10 21.42 See any operating system documentation about shared libraries for
+#10 21.42 more information, such as the ld(1) and ld.so(8) manual pages.
+#10 21.42 ----------------------------------------------------------------------
+#10 21.42
+#10 21.42 Build complete.
+#10 21.42 Don't forget to run 'make test'.
+#10 21.42
+#10 21.43 + strip --strip-all modules/intl.so
+#10 21.45 Installing shared extensions: /usr/local/lib/php/extensions/no-debug-zts-20240924/
+#10 21.49 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
+#10 21.49 find . -name \*.lo -o -name \*.o -o -name \*.dep | xargs rm -f
+#10 21.50 find . -name \*.la -o -name \*.a | xargs rm -f
+#10 21.50 find . -name \*.so | xargs rm -f
+#10 21.50 find . -name .libs -a -type d|xargs rm -rf
+#10 21.50 rm -f libphp.la modules/* libs/*
+#10 21.50 rm -f ext/opcache/jit/ir/gen_ir_fold_hash
+#10 21.50 rm -f ext/opcache/jit/ir/minilua
+#10 21.50 rm -f ext/opcache/jit/ir/ir_fold_hash.h
+#10 21.50 rm -f ext/opcache/jit/ir/ir_emit_x86.h
+#10 21.50 rm -f ext/opcache/jit/ir/ir_emit_aarch64.h
+#10 21.52 ### INSTALLING BUNDLED MODULE mysqli ###
+#10 21.54 Configuring for:
+#10 21.54 PHP Version: 8.4
+#10 21.54 PHP Api Version: 20240924
+#10 21.54 Zend Module Api No: 20240924
+#10 21.54 Zend Extension Api No: 420240924
+#10 21.78 checking for grep that handles long lines and -e... /usr/bin/grep
+#10 21.78 checking for egrep... /usr/bin/grep -E
+#10 21.78 checking for a sed that does not truncate output... /usr/bin/sed
+#10 21.79 checking build system type... aarch64-unknown-linux-gnu
+#10 21.79 checking host system type... aarch64-unknown-linux-gnu
+#10 21.79 checking target system type... aarch64-unknown-linux-gnu
+#10 21.80 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 21.81 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 21.82 checking for gawk... no
+#10 21.82 checking for nawk... nawk
+#10 21.82 checking if nawk is broken... no
+#10 21.82 checking for pkg-config... /usr/bin/pkg-config
+#10 21.82 checking pkg-config is at least version 0.9.0... yes
+#10 21.82 checking for cc... cc
+#10 21.82 checking whether the C compiler works... yes
+#10 21.84 checking for C compiler default output file name... a.out
+#10 21.84 checking for suffix of executables...
+#10 21.85 checking whether we are cross compiling... no
+#10 21.87 checking for suffix of object files... o
+#10 21.88 checking whether the compiler supports GNU C... yes
+#10 21.89 checking whether cc accepts -g... yes
+#10 21.89 checking for cc option to enable C11 features... none needed
+#10 21.92 checking how to run the C preprocessor... cc -E
+#10 21.94 checking for icc... no
+#10 21.94 checking for suncc... no
+#10 21.94 checking for system library directory... lib
+#10 21.94 checking if compiler supports -Wl,-rpath,... yes
+#10 21.96 checking for PHP prefix... /usr/local
+#10 21.96 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
+#10 21.96 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-zts-20240924
+#10 21.96 checking for PHP installed headers prefix... /usr/local/include/php
+#10 21.96 checking if debugging is enabled... no
+#10 21.97 checking if PHP is built with thread safety (ZTS)... yes
+#10 21.98
+#10 21.98 Configuring extension
+#10 21.98 checking for MySQLi support... yes, shared
+#10 21.98 checking for specified location of the MySQL Unix socket... no
+#10 21.98 checking for MySQL Unix socket location... no
+#10 21.98
+#10 21.98 Configuring libtool
+#10 21.98 checking for a sed that does not truncate output... /usr/bin/sed
+#10 21.98 checking for ld used by cc... /usr/bin/ld
+#10 21.98 checking if the linker (/usr/bin/ld) is GNU ld... yes
+#10 21.98 checking for /usr/bin/ld option to reload object files... -r
+#10 21.98 checking for BSD-compatible nm... /usr/bin/nm -B
+#10 21.99 checking whether ln -s works... yes
+#10 21.99 checking how to recognize dependent libraries... pass_all
+#10 21.99 checking for stdio.h... yes
+#10 21.99 checking for stdlib.h... yes
+#10 22.00 checking for string.h... yes
+#10 22.01 checking for inttypes.h... yes
+#10 22.03 checking for stdint.h... yes
+#10 22.04 checking for strings.h... yes
+#10 22.05 checking for sys/stat.h... yes
+#10 22.06 checking for sys/types.h... yes
+#10 22.07 checking for unistd.h... yes
+#10 22.08 checking for dlfcn.h... yes
+#10 22.09 checking the maximum length of command line arguments... 1572864
+#10 22.09 checking command to parse /usr/bin/nm -B output from cc object... ok
+#10 22.12 checking for objdir... .libs
+#10 22.12 checking for ar... ar
+#10 22.12 checking for ranlib... ranlib
+#10 22.12 checking for strip... strip
+#10 22.14 checking if cc supports -fno-rtti -fno-exceptions... no
+#10 22.15 checking for cc option to produce PIC... -fPIC
+#10 22.15 checking if cc PIC flag -fPIC works... yes
+#10 22.16 checking if cc static flag -static works... yes
+#10 22.18 checking if cc supports -c -o file.o... yes
+#10 22.19 checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
+#10 22.19 checking whether -lc should be explicitly linked in... no
+#10 22.20 checking dynamic linker characteristics... GNU/Linux ld.so
+#10 22.21 checking how to hardcode library paths into programs... immediate
+#10 22.21 checking whether stripping libraries is possible... yes
+#10 22.21 checking if libtool supports shared libraries... yes
+#10 22.21 checking whether to build shared libraries... yes
+#10 22.21 checking whether to build static libraries... no
+#10 22.25
+#10 22.25 creating libtool
+#10 22.25 appending configuration tag "CXX" to libtool
+#10 22.25
+#10 22.25 Generating files
+#10 22.26 configure: creating build directories
+#10 22.27 configure: creating Makefile
+#10 22.27 configure: patching config.h.in
+#10 22.27 configure: creating ./config.status
+#10 22.28 config.status: creating config.h
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_api.c -o mysqli_api.lo -MMD -MF mysqli_api.dep -MT mysqli_api.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_driver.c -o mysqli_driver.lo -MMD -MF mysqli_driver.dep -MT mysqli_driver.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_exception.c -o mysqli_exception.lo -MMD -MF mysqli_exception.dep -MT mysqli_exception.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c -o mysqli_nonapi.lo -MMD -MF mysqli_nonapi.dep -MT mysqli_nonapi.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_prop.c -o mysqli_prop.lo -MMD -MF mysqli_prop.dep -MT mysqli_prop.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_report.c -o mysqli_report.lo -MMD -MF mysqli_report.dep -MT mysqli_report.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_result_iterator.c -o mysqli_result_iterator.lo -MMD -MF mysqli_result_iterator.dep -MT mysqli_result_iterator.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_warning.c -o mysqli_warning.lo -MMD -MF mysqli_warning.dep -MT mysqli_warning.lo
+#10 22.30 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli.c -o mysqli.lo -MMD -MF mysqli.dep -MT mysqli.lo
+#10 22.35 mkdir .libs
+#10 22.35 mkdir .libs
+#10 22.35 mkdir: cannot create directory '.libs': File exists
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_report.c -MMD -MF mysqli_report.dep -MT mysqli_report.lo -fPIC -DPIC -o .libs/mysqli_report.o
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_driver.c -MMD -MF mysqli_driver.dep -MT mysqli_driver.lo -fPIC -DPIC -o .libs/mysqli_driver.o
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_api.c -MMD -MF mysqli_api.dep -MT mysqli_api.lo -fPIC -DPIC -o .libs/mysqli_api.o
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c -MMD -MF mysqli_nonapi.dep -MT mysqli_nonapi.lo -fPIC -DPIC -o .libs/mysqli_nonapi.o
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_result_iterator.c -MMD -MF mysqli_result_iterator.dep -MT mysqli_result_iterator.lo -fPIC -DPIC -o .libs/mysqli_result_iterator.o
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_prop.c -MMD -MF mysqli_prop.dep -MT mysqli_prop.lo -fPIC -DPIC -o .libs/mysqli_prop.o
+#10 22.35 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli.c -MMD -MF mysqli.dep -MT mysqli.lo -fPIC -DPIC -o .libs/mysqli.o
+#10 22.36 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_warning.c -MMD -MF mysqli_warning.dep -MT mysqli_warning.lo -fPIC -DPIC -o .libs/mysqli_warning.o
+#10 22.36 cc -I. -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/mysqli/mysqli_exception.c -MMD -MF mysqli_exception.dep -MT mysqli_exception.lo -fPIC -DPIC -o .libs/mysqli_exception.o
+#10 22.98 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=link cc -shared -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wl,-O1 -pie -o mysqli.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/mysqli/modules mysqli_api.lo mysqli_driver.lo mysqli_exception.lo mysqli_nonapi.lo mysqli_prop.lo mysqli_report.lo mysqli_result_iterator.lo mysqli_warning.lo mysqli.lo
+#10 23.02 cc -shared .libs/mysqli_api.o .libs/mysqli_driver.o .libs/mysqli_exception.o .libs/mysqli_nonapi.o .libs/mysqli_prop.o .libs/mysqli_report.o .libs/mysqli_result_iterator.o .libs/mysqli_warning.o .libs/mysqli.o -Wl,-O1 -Wl,-soname -Wl,mysqli.so -o .libs/mysqli.so
+#10 23.03 creating mysqli.la
+#10 23.03 (cd .libs && rm -f mysqli.la && ln -s ../mysqli.la mysqli.la)
+#10 23.03 /bin/bash /usr/src/php/ext/mysqli/libtool --tag=CC --mode=install cp ./mysqli.la /usr/src/php/ext/mysqli/modules
+#10 23.04 cp ./.libs/mysqli.so /usr/src/php/ext/mysqli/modules/mysqli.so
+#10 23.04 cp ./.libs/mysqli.lai /usr/src/php/ext/mysqli/modules/mysqli.la
+#10 23.05 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/mysqli/modules
+#10 23.05 ----------------------------------------------------------------------
+#10 23.05 Libraries have been installed in:
+#10 23.05 /usr/src/php/ext/mysqli/modules
+#10 23.05
+#10 23.05 If you ever happen to want to link against installed libraries
+#10 23.05 in a given directory, LIBDIR, you must either use libtool, and
+#10 23.05 specify the full pathname of the library, or use the `-LLIBDIR'
+#10 23.05 flag during linking and do at least one of the following:
+#10 23.05 - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
+#10 23.05 during execution
+#10 23.05 - add LIBDIR to the `LD_RUN_PATH' environment variable
+#10 23.05 during linking
+#10 23.05 - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
+#10 23.05 - have your system administrator add LIBDIR to `/etc/ld.so.conf'
+#10 23.05
+#10 23.05 See any operating system documentation about shared libraries for
+#10 23.05 more information, such as the ld(1) and ld.so(8) manual pages.
+#10 23.05 ----------------------------------------------------------------------
+#10 23.05
+#10 23.05 Build complete.
+#10 23.05 Don't forget to run 'make test'.
+#10 23.05
+#10 23.06 + strip --strip-all modules/mysqli.so
+#10 23.06 Installing shared extensions: /usr/local/lib/php/extensions/no-debug-zts-20240924/
+#10 23.08 Installing header files: /usr/local/include/php/
+#10 23.11 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
+#10 23.11 find . -name \*.lo -o -name \*.o -o -name \*.dep | xargs rm -f
+#10 23.12 find . -name \*.la -o -name \*.a | xargs rm -f
+#10 23.12 find . -name \*.so | xargs rm -f
+#10 23.12 find . -name .libs -a -type d|xargs rm -rf
+#10 23.12 rm -f libphp.la modules/* libs/*
+#10 23.12 rm -f ext/opcache/jit/ir/gen_ir_fold_hash
+#10 23.12 rm -f ext/opcache/jit/ir/minilua
+#10 23.12 rm -f ext/opcache/jit/ir/ir_fold_hash.h
+#10 23.12 rm -f ext/opcache/jit/ir/ir_emit_x86.h
+#10 23.12 rm -f ext/opcache/jit/ir/ir_emit_aarch64.h
+#10 23.14 ### INSTALLING BUNDLED MODULE opcache ###
+#10 23.16 Configuring for:
+#10 23.16 PHP Version: 8.4
+#10 23.16 PHP Api Version: 20240924
+#10 23.16 Zend Module Api No: 20240924
+#10 23.16 Zend Extension Api No: 420240924
+#10 23.41 checking for grep that handles long lines and -e... /usr/bin/grep
+#10 23.41 checking for egrep... /usr/bin/grep -E
+#10 23.41 checking for a sed that does not truncate output... /usr/bin/sed
+#10 23.42 checking build system type... aarch64-unknown-linux-gnu
+#10 23.42 checking host system type... aarch64-unknown-linux-gnu
+#10 23.42 checking target system type... aarch64-unknown-linux-gnu
+#10 23.43 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 23.44 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#10 23.44 checking for gawk... no
+#10 23.44 checking for nawk... nawk
+#10 23.44 checking if nawk is broken... no
+#10 23.44 checking for pkg-config... /usr/bin/pkg-config
+#10 23.44 checking pkg-config is at least version 0.9.0... yes
+#10 23.44 checking for cc... cc
+#10 23.45 checking whether the C compiler works... yes
+#10 23.47 checking for C compiler default output file name... a.out
+#10 23.47 checking for suffix of executables...
+#10 23.48 checking whether we are cross compiling... no
+#10 23.50 checking for suffix of object files... o
+#10 23.50 checking whether the compiler supports GNU C... yes
+#10 23.51 checking whether cc accepts -g... yes
+#10 23.52 checking for cc option to enable C11 features... none needed
+#10 23.54 checking how to run the C preprocessor... cc -E
+#10 23.56 checking for icc... no
+#10 23.56 checking for suncc... no
+#10 23.57 checking for system library directory... lib
+#10 23.57 checking if compiler supports -Wl,-rpath,... yes
+#10 23.59 checking for PHP prefix... /usr/local
+#10 23.59 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
+#10 23.59 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-zts-20240924
+#10 23.59 checking for PHP installed headers prefix... /usr/local/include/php
+#10 23.59 checking if debugging is enabled... no
+#10 23.59 checking if PHP is built with thread safety (ZTS)... yes
+#10 23.60
+#10 23.60 Configuring extension
+#10 23.60 checking whether to enable Zend OPcache support... yes, shared
+#10 23.60 checking whether to enable copying PHP CODE pages into HUGE PAGES... yes
+#10 23.60 checking whether to enable JIT... yes
+#10 23.60 checking whether to support opcache JIT disassembly through Capstone... no
+#10 23.60 checking for mprotect... yes
+#10 23.62 checking for shm_create_largepage... no
+#10 23.63 checking for sysvipc shared memory support... yes
+#10 23.66 checking for mmap() using MAP_ANON shared memory support... yes
+#10 23.68 checking for library containing shm_open... none required
+#10 23.69 checking for mmap() using shm_open() shared memory support... yes
+#10 23.73
+#10 23.73 Configuring libtool
+#10 23.73 checking for a sed that does not truncate output... /usr/bin/sed
+#10 23.73 checking for ld used by cc... /usr/bin/ld
+#10 23.73 checking if the linker (/usr/bin/ld) is GNU ld... yes
+#10 23.73 checking for /usr/bin/ld option to reload object files... -r
+#10 23.73 checking for BSD-compatible nm... /usr/bin/nm -B
+#10 23.73 checking whether ln -s works... yes
+#10 23.73 checking how to recognize dependent libraries... pass_all
+#10 23.73 checking for stdio.h... yes
+#10 23.74 checking for stdlib.h... yes
+#10 23.75 checking for string.h... yes
+#10 23.76 checking for inttypes.h... yes
+#10 23.77 checking for stdint.h... yes
+#10 23.78 checking for strings.h... yes
+#10 23.79 checking for sys/stat.h... yes
+#10 23.80 checking for sys/types.h... yes
+#10 23.81 checking for unistd.h... yes
+#10 23.82 checking for dlfcn.h... yes
+#10 23.83 checking the maximum length of command line arguments... 1572864
+#10 23.83 checking command to parse /usr/bin/nm -B output from cc object... ok
+#10 23.86 checking for objdir... .libs
+#10 23.86 checking for ar... ar
+#10 23.86 checking for ranlib... ranlib
+#10 23.86 checking for strip... strip
+#10 23.88 checking if cc supports -fno-rtti -fno-exceptions... no
+#10 23.89 checking for cc option to produce PIC... -fPIC
+#10 23.89 checking if cc PIC flag -fPIC works... yes
+#10 23.90 checking if cc static flag -static works... yes
+#10 23.92 checking if cc supports -c -o file.o... yes
+#10 23.93 checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
+#10 23.93 checking whether -lc should be explicitly linked in... no
+#10 23.94 checking dynamic linker characteristics... GNU/Linux ld.so
+#10 23.95 checking how to hardcode library paths into programs... immediate
+#10 23.95 checking whether stripping libraries is possible... yes
+#10 23.95 checking if libtool supports shared libraries... yes
+#10 23.95 checking whether to build shared libraries... yes
+#10 23.95 checking whether to build static libraries... no
+#10 23.99
+#10 23.99 creating libtool
+#10 23.99 appending configuration tag "CXX" to libtool
+#10 24.00
+#10 24.00 Generating files
+#10 24.00 configure: creating build directories
+#10 24.01 configure: creating Makefile
+#10 24.01 configure: patching config.h.in
+#10 24.01 configure: creating ./config.status
+#10 24.03 config.status: creating config.h
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/shared_alloc_mmap.c -o shared_alloc_mmap.lo -MMD -MF shared_alloc_mmap.dep -MT shared_alloc_mmap.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/shared_alloc_posix.c -o shared_alloc_posix.lo -MMD -MF shared_alloc_posix.dep -MT shared_alloc_posix.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/shared_alloc_shm.c -o shared_alloc_shm.lo -MMD -MF shared_alloc_shm.dep -MT shared_alloc_shm.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_blacklist.c -o zend_accelerator_blacklist.lo -MMD -MF zend_accelerator_blacklist.dep -MT zend_accelerator_blacklist.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_debug.c -o zend_accelerator_debug.lo -MMD -MF zend_accelerator_debug.dep -MT zend_accelerator_debug.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_hash.c -o zend_accelerator_hash.lo -MMD -MF zend_accelerator_hash.dep -MT zend_accelerator_hash.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_module.c -o zend_accelerator_module.lo -MMD -MF zend_accelerator_module.dep -MT zend_accelerator_module.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_util_funcs.c -o zend_accelerator_util_funcs.lo -MMD -MF zend_accelerator_util_funcs.dep -MT zend_accelerator_util_funcs.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_file_cache.c -o zend_file_cache.lo -MMD -MF zend_file_cache.dep -MT zend_file_cache.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_persist_calc.c -o zend_persist_calc.lo -MMD -MF zend_persist_calc.dep -MT zend_persist_calc.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_persist.c -o zend_persist.lo -MMD -MF zend_persist.dep -MT zend_persist.lo
+#10 24.04 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_shared_alloc.c -o zend_shared_alloc.lo -MMD -MF zend_shared_alloc.dep -MT zend_shared_alloc.lo
+#10 24.11 mkdir .libs
+#10 24.11 mkdir .libs
+#10 24.11 mkdir: cannot create directory '.libs': File exists
+#10 24.11 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/shared_alloc_shm.c -MMD -MF shared_alloc_shm.dep -MT shared_alloc_shm.lo -fPIC -DPIC -o .libs/shared_alloc_shm.o
+#10 24.11 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_blacklist.c -MMD -MF zend_accelerator_blacklist.dep -MT zend_accelerator_blacklist.lo -fPIC -DPIC -o .libs/zend_accelerator_blacklist.o
+#10 24.11 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/shared_alloc_posix.c -MMD -MF shared_alloc_posix.dep -MT shared_alloc_posix.lo -fPIC -DPIC -o .libs/shared_alloc_posix.o
+#10 24.11 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_hash.c -MMD -MF zend_accelerator_hash.dep -MT zend_accelerator_hash.lo -fPIC -DPIC -o .libs/zend_accelerator_hash.o
+#10 24.11 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_persist_calc.c -MMD -MF zend_persist_calc.dep -MT zend_persist_calc.lo -fPIC -DPIC -o .libs/zend_persist_calc.o
+#10 24.11 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_shared_alloc.c -MMD -MF zend_shared_alloc.dep -MT zend_shared_alloc.lo -fPIC -DPIC -o .libs/zend_shared_alloc.o
+#10 24.12 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_file_cache.c -MMD -MF zend_file_cache.dep -MT zend_file_cache.lo -fPIC -DPIC -o .libs/zend_file_cache.o
+#10 24.12 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/shared_alloc_mmap.c -MMD -MF shared_alloc_mmap.dep -MT shared_alloc_mmap.lo -fPIC -DPIC -o .libs/shared_alloc_mmap.o
+#10 24.12 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_util_funcs.c -MMD -MF zend_accelerator_util_funcs.dep -MT zend_accelerator_util_funcs.lo -fPIC -DPIC -o .libs/zend_accelerator_util_funcs.o
+#10 24.12 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_debug.c -MMD -MF zend_accelerator_debug.dep -MT zend_accelerator_debug.lo -fPIC -DPIC -o .libs/zend_accelerator_debug.o
+#10 24.12 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_persist.c -MMD -MF zend_persist.dep -MT zend_persist.lo -fPIC -DPIC -o .libs/zend_persist.o
+#10 24.13 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/zend_accelerator_module.c -MMD -MF zend_accelerator_module.dep -MT zend_accelerator_module.lo -fPIC -DPIC -o .libs/zend_accelerator_module.o
+#10 24.32 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/ZendAccelerator.c -o ZendAccelerator.lo -MMD -MF ZendAccelerator.dep -MT ZendAccelerator.lo
+#10 24.33 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_cfg.c -o jit/ir/ir_cfg.lo -MMD -MF jit/ir/ir_cfg.dep -MT jit/ir/ir_cfg.lo
+#10 24.34 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_check.c -o jit/ir/ir_check.lo -MMD -MF jit/ir/ir_check.dep -MT jit/ir/ir_check.lo
+#10 24.35 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_dump.c -o jit/ir/ir_dump.lo -MMD -MF jit/ir/ir_dump.dep -MT jit/ir/ir_dump.lo
+#10 24.37 cc /usr/src/php/ext/opcache/jit/ir/dynasm/minilua.c -lm -o jit/ir/minilua
+#10 24.38 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_gcm.c -o jit/ir/ir_gcm.lo -MMD -MF jit/ir/ir_gcm.dep -MT jit/ir/ir_gcm.lo
+#10 24.40 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/ZendAccelerator.c -MMD -MF ZendAccelerator.dep -MT ZendAccelerator.lo -fPIC -DPIC -o .libs/ZendAccelerator.o
+#10 24.43 mkdir jit/ir/.libs
+#10 24.43 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_check.c -MMD -MF jit/ir/ir_check.dep -MT jit/ir/ir_check.lo -fPIC -DPIC -o jit/ir/.libs/ir_check.o
+#10 24.43 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_gdb.c -o jit/ir/ir_gdb.lo -MMD -MF jit/ir/ir_gdb.dep -MT jit/ir/ir_gdb.lo
+#10 24.43 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_cfg.c -MMD -MF jit/ir/ir_cfg.dep -MT jit/ir/ir_cfg.lo -fPIC -DPIC -o jit/ir/.libs/ir_cfg.o
+#10 24.44 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_dump.c -MMD -MF jit/ir/ir_dump.dep -MT jit/ir/ir_dump.lo -fPIC -DPIC -o jit/ir/.libs/ir_dump.o
+#10 24.44 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_patch.c -o jit/ir/ir_patch.lo -MMD -MF jit/ir/ir_patch.dep -MT jit/ir/ir_patch.lo
+#10 24.46 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_gcm.c -MMD -MF jit/ir/ir_gcm.dep -MT jit/ir/ir_gcm.lo -fPIC -DPIC -o jit/ir/.libs/ir_gcm.o
+#10 24.49 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_gdb.c -MMD -MF jit/ir/ir_gdb.dep -MT jit/ir/ir_gdb.lo -fPIC -DPIC -o jit/ir/.libs/ir_gdb.o
+#10 24.50 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_patch.c -MMD -MF jit/ir/ir_patch.dep -MT jit/ir/ir_patch.lo -fPIC -DPIC -o jit/ir/.libs/ir_patch.o
+#10 24.58 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_perf.c -o jit/ir/ir_perf.lo -MMD -MF jit/ir/ir_perf.dep -MT jit/ir/ir_perf.lo
+#10 24.63 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_perf.c -MMD -MF jit/ir/ir_perf.dep -MT jit/ir/ir_perf.lo -fPIC -DPIC -o jit/ir/.libs/ir_perf.o
+#10 24.66 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_ra.c -o jit/ir/ir_ra.lo -MMD -MF jit/ir/ir_ra.dep -MT jit/ir/ir_ra.lo
+#10 24.69 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_save.c -o jit/ir/ir_save.lo -MMD -MF jit/ir/ir_save.dep -MT jit/ir/ir_save.lo
+#10 24.70 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_ra.c -MMD -MF jit/ir/ir_ra.dep -MT jit/ir/ir_ra.lo -fPIC -DPIC -o jit/ir/.libs/ir_ra.o
+#10 24.73 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_save.c -MMD -MF jit/ir/ir_save.dep -MT jit/ir/ir_save.lo -fPIC -DPIC -o jit/ir/.libs/ir_save.o
+#10 24.76 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_sccp.c -o jit/ir/ir_sccp.lo -MMD -MF jit/ir/ir_sccp.dep -MT jit/ir/ir_sccp.lo
+#10 24.77 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_strtab.c -o jit/ir/ir_strtab.lo -MMD -MF jit/ir/ir_strtab.dep -MT jit/ir/ir_strtab.lo
+#10 24.79 cc -DIR_TARGET_AARCH64 -DIR_PHP -DIR_PHP_MM=0 -o jit/ir/gen_ir_fold_hash /usr/src/php/ext/opcache/jit/ir/gen_ir_fold_hash.c
+#10 24.79 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/zend_jit_vm_helpers.c -o jit/zend_jit_vm_helpers.lo -MMD -MF jit/zend_jit_vm_helpers.dep -MT jit/zend_jit_vm_helpers.lo
+#10 24.79 make: Circular jit/zend_jit.lo <- jit/zend_jit.lo dependency dropped.
+#10 24.81 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_sccp.c -MMD -MF jit/ir/ir_sccp.dep -MT jit/ir/ir_sccp.lo -fPIC -DPIC -o jit/ir/.libs/ir_sccp.o
+#10 24.82 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_strtab.c -MMD -MF jit/ir/ir_strtab.dep -MT jit/ir/ir_strtab.lo -fPIC -DPIC -o jit/ir/.libs/ir_strtab.o
+#10 24.83 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/zend_jit.c -o jit/zend_jit.lo -MMD -MF jit/zend_jit.dep -MT jit/zend_jit.lo
+#10 24.85 ./jit/ir/minilua /usr/src/php/ext/opcache/jit/ir/dynasm/dynasm.lua -o jit/ir/ir_emit_aarch64.h /usr/src/php/ext/opcache/jit/ir/ir_aarch64.dasc
+#10 24.86 mkdir jit/.libs
+#10 24.86 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/zend_jit_vm_helpers.c -MMD -MF jit/zend_jit_vm_helpers.dep -MT jit/zend_jit_vm_helpers.lo -fPIC -DPIC -o jit/.libs/zend_jit_vm_helpers.o
+#10 24.90 ./jit/ir/gen_ir_fold_hash < /usr/src/php/ext/opcache/jit/ir/ir_fold.h > ./jit/ir/ir_fold_hash.h
+#10 24.90 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/zend_jit.c -MMD -MF jit/zend_jit.dep -MT jit/zend_jit.lo -fPIC -DPIC -o jit/.libs/zend_jit.o
+#10 24.95 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_emit.c -o jit/ir/ir_emit.lo -MMD -MF jit/ir/ir_emit.dep -MT jit/ir/ir_emit.lo
+#10 24.99 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir_emit.c -MMD -MF jit/ir/ir_emit.dep -MT jit/ir/ir_emit.lo -fPIC -DPIC -o jit/ir/.libs/ir_emit.o
+#10 26.09 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=compile cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir.c -o jit/ir/ir.lo -MMD -MF jit/ir/ir.dep -MT jit/ir/ir.lo
+#10 26.12 cc -I. -I/usr/src/php/ext/opcache -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I./jit/ir -DIR_TARGET_AARCH64 -DIR_PHP -DZEND_COMPILE_DL_EXT=1 -c /usr/src/php/ext/opcache/jit/ir/ir.c -MMD -MF jit/ir/ir.dep -MT jit/ir/ir.lo -fPIC -DPIC -o jit/ir/.libs/ir.o
+#10 32.89 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=link cc -shared -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -Wl,-O1 -pie -o opcache.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/opcache/modules shared_alloc_mmap.lo shared_alloc_posix.lo shared_alloc_shm.lo zend_accelerator_blacklist.lo zend_accelerator_debug.lo zend_accelerator_hash.lo zend_accelerator_module.lo zend_accelerator_util_funcs.lo zend_file_cache.lo zend_persist_calc.lo zend_persist.lo zend_shared_alloc.lo ZendAccelerator.lo jit/ir/ir_cfg.lo jit/ir/ir_check.lo jit/ir/ir_dump.lo jit/ir/ir_emit.lo jit/ir/ir_gcm.lo jit/ir/ir_gdb.lo jit/ir/ir_patch.lo jit/ir/ir_perf.lo jit/ir/ir_ra.lo jit/ir/ir_save.lo jit/ir/ir_sccp.lo jit/ir/ir_strtab.lo jit/ir/ir.lo jit/zend_jit_vm_helpers.lo jit/zend_jit.lo
+#10 32.94 cc -shared .libs/shared_alloc_mmap.o .libs/shared_alloc_posix.o .libs/shared_alloc_shm.o .libs/zend_accelerator_blacklist.o .libs/zend_accelerator_debug.o .libs/zend_accelerator_hash.o .libs/zend_accelerator_module.o .libs/zend_accelerator_util_funcs.o .libs/zend_file_cache.o .libs/zend_persist_calc.o .libs/zend_persist.o .libs/zend_shared_alloc.o .libs/ZendAccelerator.o jit/ir/.libs/ir_cfg.o jit/ir/.libs/ir_check.o jit/ir/.libs/ir_dump.o jit/ir/.libs/ir_emit.o jit/ir/.libs/ir_gcm.o jit/ir/.libs/ir_gdb.o jit/ir/.libs/ir_patch.o jit/ir/.libs/ir_perf.o jit/ir/.libs/ir_ra.o jit/ir/.libs/ir_save.o jit/ir/.libs/ir_sccp.o jit/ir/.libs/ir_strtab.o jit/ir/.libs/ir.o jit/.libs/zend_jit_vm_helpers.o jit/.libs/zend_jit.o -Wl,-O1 -Wl,-soname -Wl,opcache.so -o .libs/opcache.so
+#10 32.96 creating opcache.la
+#10 32.96 (cd .libs && rm -f opcache.la && ln -s ../opcache.la opcache.la)
+#10 32.96 /bin/bash /usr/src/php/ext/opcache/libtool --tag=CC --mode=install cp ./opcache.la /usr/src/php/ext/opcache/modules
+#10 32.97 cp ./.libs/opcache.so /usr/src/php/ext/opcache/modules/opcache.so
+#10 32.97 cp ./.libs/opcache.lai /usr/src/php/ext/opcache/modules/opcache.la
+#10 32.98 PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/opcache/modules
+#10 32.98 ----------------------------------------------------------------------
+#10 32.98 Libraries have been installed in:
+#10 32.98 /usr/src/php/ext/opcache/modules
+#10 32.98
+#10 32.98 If you ever happen to want to link against installed libraries
+#10 32.98 in a given directory, LIBDIR, you must either use libtool, and
+#10 32.98 specify the full pathname of the library, or use the `-LLIBDIR'
+#10 32.98 flag during linking and do at least one of the following:
+#10 32.98 - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
+#10 32.98 during execution
+#10 32.98 - add LIBDIR to the `LD_RUN_PATH' environment variable
+#10 32.98 during linking
+#10 32.98 - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
+#10 32.98 - have your system administrator add LIBDIR to `/etc/ld.so.conf'
+#10 32.98
+#10 32.98 See any operating system documentation about shared libraries for
+#10 32.98 more information, such as the ld(1) and ld.so(8) manual pages.
+#10 32.98 ----------------------------------------------------------------------
+#10 32.98
+#10 32.98 Build complete.
+#10 32.98 Don't forget to run 'make test'.
+#10 32.98
+#10 32.99 + strip --strip-all modules/opcache.so
+#10 33.00 make: Circular jit/zend_jit.lo <- jit/zend_jit.lo dependency dropped.
+#10 33.00 Installing shared extensions: /usr/local/lib/php/extensions/no-debug-zts-20240924/
+#10 33.04 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
+#10 33.04 find . -name \*.lo -o -name \*.o -o -name \*.dep | xargs rm -f
+#10 33.04 find . -name \*.la -o -name \*.a | xargs rm -f
+#10 33.04 find . -name \*.so | xargs rm -f
+#10 33.04 find . -name .libs -a -type d|xargs rm -rf
+#10 33.04 rm -f libphp.la modules/* libs/*
+#10 33.05 rm -f ext/opcache/jit/ir/gen_ir_fold_hash
+#10 33.05 rm -f ext/opcache/jit/ir/minilua
+#10 33.05 rm -f ext/opcache/jit/ir/ir_fold_hash.h
+#10 33.05 rm -f ext/opcache/jit/ir/ir_emit_x86.h
+#10 33.05 rm -f ext/opcache/jit/ir/ir_emit_aarch64.h
+#10 33.06 ### REMOVING UNNEEDED PACKAGES ###
+#10 33.07 Reading package lists...
+#10 33.30 Building dependency tree...
+#10 33.36 Reading state information...
+#10 33.43 The following packages will be REMOVED:
+#10 33.43 icu-devtools* libaom-dev* libavif-dev* libbrotli-dev* libdav1d-dev*
+#10 33.43 libfreetype-dev* libfreetype6-dev* libicu-dev* libjpeg62-turbo-dev*
+#10 33.43 libpng-dev* libpthread-stubs0-dev* libwebp-dev* libwebpdemux2* libwebpmux3*
+#10 33.43 libx11-dev* libxau-dev* libxcb1-dev* libxdmcp-dev* libxpm-dev* x11proto-dev*
+#10 33.43 xorg-sgml-doctools* xtrans-dev* zlib1g-dev*
+#10 33.50 0 upgraded, 0 newly installed, 23 to remove and 55 not upgraded.
+#10 33.50 After this operation, 70.0 MB disk space will be freed.
+#10 33.51 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 14653 files and directories currently installed.)
+#10 33.51 Removing libicu-dev:arm64 (72.1-3+deb12u1) ...
+#10 33.56 Removing icu-devtools (72.1-3+deb12u1) ...
+#10 33.58 Removing libaom-dev:arm64 (3.6.0-1+deb12u2) ...
+#10 33.61 Removing libavif-dev:arm64 (0.11.1-1+deb12u1) ...
+#10 33.62 Removing libfreetype6-dev:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 33.64 Removing libfreetype-dev:arm64 (2.12.1+dfsg-5+deb12u4) ...
+#10 33.65 Removing libbrotli-dev:arm64 (1.0.9-2+b6) ...
+#10 33.67 Removing libdav1d-dev:arm64 (1.0.0-2+deb12u1) ...
+#10 33.68 Removing libjpeg62-turbo-dev:arm64 (1:2.1.5-2) ...
+#10 33.70 Removing libpng-dev:arm64 (1.6.39-2) ...
+#10 33.71 Removing libxpm-dev:arm64 (1:3.5.12-1.1+deb12u1) ...
+#10 33.72 Removing libx11-dev:arm64 (2:1.8.4-2+deb12u2) ...
+#10 33.74 Removing libxcb1-dev:arm64 (1.15-1) ...
+#10 33.75 Removing libpthread-stubs0-dev:arm64 (0.4-1) ...
+#10 33.76 Removing libwebp-dev:arm64 (1.2.4-0.2+deb12u1) ...
+#10 33.78 Removing libwebpdemux2:arm64 (1.2.4-0.2+deb12u1) ...
+#10 33.79 Removing libwebpmux3:arm64 (1.2.4-0.2+deb12u1) ...
+#10 33.80 Removing libxau-dev:arm64 (1:1.0.9-1) ...
+#10 33.82 Removing libxdmcp-dev:arm64 (1:1.1.2-3) ...
+#10 33.83 Removing x11proto-dev (2022.1-1) ...
+#10 33.84 Removing xorg-sgml-doctools (1:1.11-1.1) ...
+#10 33.86 Removing xtrans-dev (1.4.0-1) ...
+#10 33.87 Removing zlib1g-dev:arm64 (1:1.2.13.dfsg-1) ...
+#10 33.89 Processing triggers for libc-bin (2.36-9+deb12u10) ...
+#10 33.89 ldconfig: /usr/local/lib/libwatcher-c.so.0 is not a symbolic link
+#10 33.89
+#10 33.91 ### RESTORING PREVIOUSLY INSTALLED PACKAGES ###
+#10 DONE 37.1s
+
+#11 [base 4/7] RUN groupadd --gid 100000 app && useradd --uid 100000 --gid 100000 --create-home --shell /bin/bash app && chown -R app:app /config /data && apt update && apt install -y curl default-mysql-client less
+#11 0.124 useradd warning: app's uid 100000 outside of the UID_MIN 1000 and UID_MAX 60000 range.
+#11 0.133
+#11 0.133 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
+#11 0.133
+#11 0.179 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
+#11 0.218 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
+#11 0.229 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
+#11 0.245 Get:4 http://deb.debian.org/debian bookworm/main arm64 Packages [8693 kB]
+#11 2.307 Get:5 http://deb.debian.org/debian bookworm-updates/main arm64 Packages [6936 B]
+#11 2.310 Get:6 http://deb.debian.org/debian-security bookworm-security/main arm64 Packages [283 kB]
+#11 2.881 Fetched 9237 kB in 3s (3367 kB/s)
+#11 2.881 Reading package lists...
+#11 3.119 Building dependency tree...
+#11 3.194 Reading state information...
+#11 3.200 55 packages can be upgraded. Run 'apt list --upgradable' to see them.
+#11 3.201
+#11 3.201 WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
+#11 3.201
+#11 3.202 Reading package lists...
+#11 3.440 Building dependency tree...
+#11 3.501 Reading state information...
+#11 3.566 The following additional packages will be installed:
+#11 3.566 libconfig-inifiles-perl libcurl4 libdbd-mariadb-perl libdbi-perl libedit2
+#11 3.566 libgpm2 libmariadb3 libncurses6 libterm-readkey-perl mariadb-client
+#11 3.566 mariadb-client-core mariadb-common mysql-common
+#11 3.566 Suggested packages:
+#11 3.566 libclone-perl libmldbm-perl libnet-daemon-perl libsql-statement-perl gpm
+#11 3.641 The following NEW packages will be installed:
+#11 3.641 default-mysql-client less libconfig-inifiles-perl libdbd-mariadb-perl
+#11 3.641 libdbi-perl libedit2 libgpm2 libmariadb3 libncurses6 libterm-readkey-perl
+#11 3.641 mariadb-client mariadb-client-core mariadb-common mysql-common
+#11 3.642 The following packages will be upgraded:
+#11 3.642 curl libcurl4
+#11 3.675 2 upgraded, 14 newly installed, 0 to remove and 53 not upgraded.
+#11 3.675 Need to get 5936 kB of archives.
+#11 3.675 After this operation, 85.6 MB of additional disk space will be used.
+#11 3.675 Get:1 http://deb.debian.org/debian bookworm/main arm64 less arm64 590-2.1~deb12u2 [128 kB]
+#11 3.738 Get:2 http://deb.debian.org/debian bookworm/main arm64 curl arm64 7.88.1-10+deb12u14 [309 kB]
+#11 3.779 Get:3 http://deb.debian.org/debian bookworm/main arm64 libcurl4 arm64 7.88.1-10+deb12u14 [367 kB]
+#11 3.815 Get:4 http://deb.debian.org/debian bookworm/main arm64 libconfig-inifiles-perl all 3.000003-2 [45.9 kB]
+#11 3.820 Get:5 http://deb.debian.org/debian bookworm/main arm64 mysql-common all 5.8+1.1.0 [6636 B]
+#11 3.821 Get:6 http://deb.debian.org/debian bookworm/main arm64 mariadb-common all 1:10.11.14-0+deb12u2 [26.3 kB]
+#11 3.826 Get:7 http://deb.debian.org/debian bookworm/main arm64 libmariadb3 arm64 1:10.11.14-0+deb12u2 [170 kB]
+#11 3.839 Get:8 http://deb.debian.org/debian bookworm/main arm64 libedit2 arm64 3.1-20221030-2 [88.1 kB]
+#11 3.845 Get:9 http://deb.debian.org/debian bookworm/main arm64 libncurses6 arm64 6.4-4 [93.9 kB]
+#11 3.853 Get:10 http://deb.debian.org/debian bookworm/main arm64 mariadb-client-core arm64 1:10.11.14-0+deb12u2 [862 kB]
+#11 3.981 Get:11 http://deb.debian.org/debian bookworm/main arm64 mariadb-client arm64 1:10.11.14-0+deb12u2 [2941 kB]
+#11 4.395 Get:12 http://deb.debian.org/debian bookworm/main arm64 default-mysql-client all 1.1.0 [2852 B]
+#11 4.396 Get:13 http://deb.debian.org/debian bookworm/main arm64 libdbi-perl arm64 1.643-4 [767 kB]
+#11 4.483 Get:14 http://deb.debian.org/debian bookworm/main arm64 libdbd-mariadb-perl arm64 1.22-1+b1 [89.1 kB]
+#11 4.486 Get:15 http://deb.debian.org/debian bookworm/main arm64 libgpm2 arm64 1.20.7-10+b1 [14.4 kB]
+#11 4.487 Get:16 http://deb.debian.org/debian bookworm/main arm64 libterm-readkey-perl arm64 2.38-2+b1 [24.1 kB]
+#11 4.555 debconf: delaying package configuration, since apt-utils is not installed
+#11 4.564 Fetched 5936 kB in 1s (7034 kB/s)
+#11 4.591 Selecting previously unselected package less.
+#11 4.591 (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 13817 files and directories currently installed.)
+#11 4.594 Preparing to unpack .../00-less_590-2.1~deb12u2_arm64.deb ...
+#11 4.604 Unpacking less (590-2.1~deb12u2) ...
+#11 4.638 Preparing to unpack .../01-curl_7.88.1-10+deb12u14_arm64.deb ...
+#11 4.647 Unpacking curl (7.88.1-10+deb12u14) over (7.88.1-10+deb12u12) ...
+#11 4.690 Preparing to unpack .../02-libcurl4_7.88.1-10+deb12u14_arm64.deb ...
+#11 4.702 Unpacking libcurl4:arm64 (7.88.1-10+deb12u14) over (7.88.1-10+deb12u12) ...
+#11 4.741 Selecting previously unselected package libconfig-inifiles-perl.
+#11 4.742 Preparing to unpack .../03-libconfig-inifiles-perl_3.000003-2_all.deb ...
+#11 4.745 Unpacking libconfig-inifiles-perl (3.000003-2) ...
+#11 4.776 Selecting previously unselected package mysql-common.
+#11 4.777 Preparing to unpack .../04-mysql-common_5.8+1.1.0_all.deb ...
+#11 4.782 Unpacking mysql-common (5.8+1.1.0) ...
+#11 4.808 Selecting previously unselected package mariadb-common.
+#11 4.809 Preparing to unpack .../05-mariadb-common_1%3a10.11.14-0+deb12u2_all.deb ...
+#11 4.812 Unpacking mariadb-common (1:10.11.14-0+deb12u2) ...
+#11 4.835 Selecting previously unselected package libmariadb3:arm64.
+#11 4.836 Preparing to unpack .../06-libmariadb3_1%3a10.11.14-0+deb12u2_arm64.deb ...
+#11 4.838 Unpacking libmariadb3:arm64 (1:10.11.14-0+deb12u2) ...
+#11 4.870 Selecting previously unselected package libedit2:arm64.
+#11 4.871 Preparing to unpack .../07-libedit2_3.1-20221030-2_arm64.deb ...
+#11 4.873 Unpacking libedit2:arm64 (3.1-20221030-2) ...
+#11 4.899 Selecting previously unselected package libncurses6:arm64.
+#11 4.899 Preparing to unpack .../08-libncurses6_6.4-4_arm64.deb ...
+#11 4.902 Unpacking libncurses6:arm64 (6.4-4) ...
+#11 4.922 Selecting previously unselected package mariadb-client-core.
+#11 4.923 Preparing to unpack .../09-mariadb-client-core_1%3a10.11.14-0+deb12u2_arm64.deb ...
+#11 4.925 Unpacking mariadb-client-core (1:10.11.14-0+deb12u2) ...
+#11 5.015 Selecting previously unselected package mariadb-client.
+#11 5.016 Preparing to unpack .../10-mariadb-client_1%3a10.11.14-0+deb12u2_arm64.deb ...
+#11 5.019 Unpacking mariadb-client (1:10.11.14-0+deb12u2) ...
+#11 5.221 Selecting previously unselected package default-mysql-client.
+#11 5.222 Preparing to unpack .../11-default-mysql-client_1.1.0_all.deb ...
+#11 5.225 Unpacking default-mysql-client (1.1.0) ...
+#11 5.246 Selecting previously unselected package libdbi-perl:arm64.
+#11 5.247 Preparing to unpack .../12-libdbi-perl_1.643-4_arm64.deb ...
+#11 5.251 Unpacking libdbi-perl:arm64 (1.643-4) ...
+#11 5.308 Selecting previously unselected package libdbd-mariadb-perl.
+#11 5.308 Preparing to unpack .../13-libdbd-mariadb-perl_1.22-1+b1_arm64.deb ...
+#11 5.312 Unpacking libdbd-mariadb-perl (1.22-1+b1) ...
+#11 5.339 Selecting previously unselected package libgpm2:arm64.
+#11 5.340 Preparing to unpack .../14-libgpm2_1.20.7-10+b1_arm64.deb ...
+#11 5.342 Unpacking libgpm2:arm64 (1.20.7-10+b1) ...
+#11 5.361 Selecting previously unselected package libterm-readkey-perl.
+#11 5.362 Preparing to unpack .../15-libterm-readkey-perl_2.38-2+b1_arm64.deb ...
+#11 5.365 Unpacking libterm-readkey-perl (2.38-2+b1) ...
+#11 5.391 Setting up libconfig-inifiles-perl (3.000003-2) ...
+#11 5.399 Setting up mysql-common (5.8+1.1.0) ...
+#11 5.413 update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode
+#11 5.416 Setting up libgpm2:arm64 (1.20.7-10+b1) ...
+#11 5.424 Setting up libedit2:arm64 (3.1-20221030-2) ...
+#11 5.429 Setting up less (590-2.1~deb12u2) ...
+#11 5.435 Setting up mariadb-common (1:10.11.14-0+deb12u2) ...
+#11 5.440 update-alternatives: using /etc/mysql/mariadb.cnf to provide /etc/mysql/my.cnf (my.cnf) in auto mode
+#11 5.442 Setting up libncurses6:arm64 (6.4-4) ...
+#11 5.447 Setting up libmariadb3:arm64 (1:10.11.14-0+deb12u2) ...
+#11 5.450 Setting up libcurl4:arm64 (7.88.1-10+deb12u14) ...
+#11 5.455 Setting up curl (7.88.1-10+deb12u14) ...
+#11 5.458 Setting up libterm-readkey-perl (2.38-2+b1) ...
+#11 5.462 Setting up libdbi-perl:arm64 (1.643-4) ...
+#11 5.466 Setting up mariadb-client-core (1:10.11.14-0+deb12u2) ...
+#11 5.470 Setting up libdbd-mariadb-perl (1.22-1+b1) ...
+#11 5.474 Setting up mariadb-client (1:10.11.14-0+deb12u2) ...
+#11 5.482 Setting up default-mysql-client (1.1.0) ...
+#11 5.487 Processing triggers for mailcap (3.70+nmu1) ...
+#11 5.492 Processing triggers for libc-bin (2.36-9+deb12u10) ...
+#11 5.496 ldconfig: /usr/local/lib/libwatcher-c.so.0 is not a symbolic link
+#11 5.496
+#11 DONE 5.6s
+
+#12 [base 5/7] COPY docker/fairpm-wordpress/Caddyfile /etc/caddy/Caddyfile
+#12 DONE 0.1s
+
+#13 [base 6/7] COPY docker/fairpm-wordpress/php.local.ini /usr/local/etc/php/conf.d/php.local.ini
+#13 DONE 0.0s
+
+#14 [base 7/7] WORKDIR /app
+#14 DONE 0.0s
+
+#15 [dev 1/1] RUN install-php-extensions xdebug
+#15 0.088 install-php-extensions v.2.7.34
+#15 0.088 #StandWithUkraine
+#15 1.116 Updating channel "pecl.php.net"
+#15 1.949 Channel "pecl.php.net" is up to date
+#15 2.000 Hit:1 http://deb.debian.org/debian bookworm InRelease
+#15 2.003 Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
+#15 2.011 Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease
+#15 2.063 Reading package lists...
+#15 2.309 ### INSTALLING REMOTE MODULE xdebug ###
+#15 6.122 downloading xdebug-3.4.7.tgz ...
+#15 6.122 Starting to download xdebug-3.4.7.tgz (264,106 bytes)
+#15 6.122 ......................................................done: 264,106 bytes
+#15 6.443 102 source files, building
+#15 6.443 running: phpize
+#15 6.446 Configuring for:
+#15 6.447 PHP Version: 8.4
+#15 6.447 PHP Api Version: 20240924
+#15 6.447 Zend Module Api No: 20240924
+#15 6.447 Zend Extension Api No: 420240924
+#15 6.705 building in /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7
+#15 6.705 running: /tmp/pear/temp/xdebug/configure --with-php-config=/usr/local/bin/php-config
+#15 6.732 checking for grep that handles long lines and -e... /usr/bin/grep
+#15 6.732 checking for egrep... /usr/bin/grep -E
+#15 6.733 checking for a sed that does not truncate output... /usr/bin/sed
+#15 6.756 checking build system type... aarch64-unknown-linux-gnu
+#15 6.756 checking host system type... aarch64-unknown-linux-gnu
+#15 6.756 checking target system type... aarch64-unknown-linux-gnu
+#15 6.763 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#15 6.774 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#15 6.777 checking for gawk... no
+#15 6.777 checking for nawk... nawk
+#15 6.777 checking if nawk is broken... no
+#15 6.778 checking for pkg-config... /usr/bin/pkg-config
+#15 6.778 checking pkg-config is at least version 0.9.0... yes
+#15 6.779 checking for cc... cc
+#15 6.801 checking whether the C compiler works... yes
+#15 6.801 checking for C compiler default output file name... a.out
+#15 6.816 checking for suffix of executables...
+#15 6.833 checking whether we are cross compiling... no
+#15 6.842 checking for suffix of object files... o
+#15 6.850 checking whether the compiler supports GNU C... yes
+#15 6.858 checking whether cc accepts -g... yes
+#15 6.882 checking for cc option to enable C11 features... none needed
+#15 6.892 checking how to run the C preprocessor... cc -E
+#15 6.905 checking for icc... no
+#15 6.909 checking for suncc... no
+#15 6.909 checking for system library directory... lib
+#15 6.923 checking if compiler supports -Wl,-rpath,... yes
+#15 6.928 checking for PHP prefix... /usr/local
+#15 6.928 checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
+#15 6.928 checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-zts-20240924
+#15 6.928 checking for PHP installed headers prefix... /usr/local/include/php
+#15 6.934 checking if debugging is enabled... no
+#15 6.942 checking if PHP is built with thread safety (ZTS)... yes
+#15 6.942
+#15 6.942 Configuring extension
+#15 6.942 checking whether to enable Xdebug support... yes, shared
+#15 6.942 checking whether to enable Xdebug developer build flags... no
+#15 6.942 checking whether to compress profiler files (requires zlib)... yes
+#15 6.944 checking for supported PHP version... supported (8.4.7)
+#15 6.960 checking for clock_gettime... yes
+#15 6.977 checking for clock_gettime_nsec_np... no
+#15 6.993 checking for gettimeofday... yes
+#15 7.000 checking for stdio.h... yes
+#15 7.009 checking for stdlib.h... yes
+#15 7.019 checking for string.h... yes
+#15 7.028 checking for inttypes.h... yes
+#15 7.038 checking for stdint.h... yes
+#15 7.048 checking for strings.h... yes
+#15 7.059 checking for sys/stat.h... yes
+#15 7.069 checking for sys/types.h... yes
+#15 7.081 checking for unistd.h... yes
+#15 7.093 checking for netinet/in.h... yes
+#15 7.104 checking for poll.h... yes
+#15 7.114 checking for sys/poll.h... yes
+#15 7.128 checking for linux/rtnetlink.h... yes
+#15 7.145 checking for res_ninit... no
+#15 7.161 checking for __res_ninit... yes
+#15 7.179 checking for res_nclose... no
+#15 7.194 checking for __res_nclose... yes
+#15 7.211 checking for cos in -lm... yes
+#15 7.212 checking for zlib >= 1.2.9... no
+#15 7.227
+#15 7.227 Configuring libtool
+#15 7.229 checking for a sed that does not truncate output... /usr/bin/sed
+#15 7.230 checking for ld used by cc... /usr/bin/ld
+#15 7.231 checking if the linker (/usr/bin/ld) is GNU ld... yes
+#15 7.231 checking for /usr/bin/ld option to reload object files... -r
+#15 7.232 checking for BSD-compatible nm... /usr/bin/nm -B
+#15 7.232 checking whether ln -s works... yes
+#15 7.232 checking how to recognize dependent libraries... pass_all
+#15 7.243 checking for dlfcn.h... yes
+#15 7.244 checking the maximum length of command line arguments... 1572864
+#15 7.269 checking command to parse /usr/bin/nm -B output from cc object... ok
+#15 7.270 checking for objdir... .libs
+#15 7.270 checking for ar... ar
+#15 7.270 checking for ranlib... ranlib
+#15 7.270 checking for strip... strip
+#15 7.301 checking if cc supports -fno-rtti -fno-exceptions... no
+#15 7.301 checking for cc option to produce PIC... -fPIC
+#15 7.309 checking if cc PIC flag -fPIC works... yes
+#15 7.334 checking if cc static flag -static works... yes
+#15 7.344 checking if cc supports -c -o file.o... yes
+#15 7.348 checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes
+#15 7.358 checking whether -lc should be explicitly linked in... no
+#15 7.362 checking dynamic linker characteristics... GNU/Linux ld.so
+#15 7.363 checking how to hardcode library paths into programs... immediate
+#15 7.364 checking whether stripping libraries is possible... yes
+#15 7.364 checking if libtool supports shared libraries... yes
+#15 7.364 checking whether to build shared libraries... yes
+#15 7.364 checking whether to build static libraries... no
+#15 7.402
+#15 7.402 creating libtool
+#15 7.408 appending configuration tag "CXX" to libtool
+#15 7.411
+#15 7.411 Generating files
+#15 7.420 configure: creating build directories
+#15 7.431 configure: creating Makefile
+#15 7.432 configure: patching config.h.in
+#15 7.434 configure: creating ./config.status
+#15 7.447 config.status: creating config.h
+#15 7.459 running: make -j12
+#15 7.461 Makefile:243: warning: overriding recipe for target 'test'
+#15 7.461 Makefile:134: warning: ignoring old recipe for target 'test'
+#15 7.463 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/xdebug.c -o xdebug.lo -MMD -MF xdebug.dep -MT xdebug.lo
+#15 7.463 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/base/base.c -o src/base/base.lo -MMD -MF src/base/base.dep -MT src/base/base.lo
+#15 7.463 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/base/ctrl_socket.c -o src/base/ctrl_socket.lo -MMD -MF src/base/ctrl_socket.dep -MT src/base/ctrl_socket.lo
+#15 7.463 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/base/filter.c -o src/base/filter.lo -MMD -MF src/base/filter.dep -MT src/base/filter.lo
+#15 7.463 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/usefulstuff.c -o src/lib/usefulstuff.lo -MMD -MF src/lib/usefulstuff.dep -MT src/lib/usefulstuff.lo
+#15 7.464 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/cmd_parser.c -o src/lib/cmd_parser.lo -MMD -MF src/lib/cmd_parser.dep -MT src/lib/cmd_parser.lo
+#15 7.464 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/compat.c -o src/lib/compat.lo -MMD -MF src/lib/compat.dep -MT src/lib/compat.lo
+#15 7.465 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/crc32.c -o src/lib/crc32.lo -MMD -MF src/lib/crc32.dep -MT src/lib/crc32.lo
+#15 7.465 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/file.c -o src/lib/file.lo -MMD -MF src/lib/file.dep -MT src/lib/file.lo
+#15 7.465 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/hash.c -o src/lib/hash.lo -MMD -MF src/lib/hash.dep -MT src/lib/hash.lo
+#15 7.465 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/headers.c -o src/lib/headers.lo -MMD -MF src/lib/headers.dep -MT src/lib/headers.lo
+#15 7.465 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/lib.c -o src/lib/lib.lo -MMD -MF src/lib/lib.dep -MT src/lib/lib.lo
+#15 7.520 mkdir src/lib/.libs
+#15 7.520 mkdir src/lib/.libs
+#15 7.520 mkdir .libs
+#15 7.520 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/usefulstuff.c -MMD -MF src/lib/usefulstuff.dep -MT src/lib/usefulstuff.lo -fPIC -DPIC -o src/lib/.libs/usefulstuff.o
+#15 7.520 mkdir src/base/.libs
+#15 7.521 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/xdebug.c -MMD -MF xdebug.dep -MT xdebug.lo -fPIC -DPIC -o .libs/xdebug.o
+#15 7.521 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/headers.c -MMD -MF src/lib/headers.dep -MT src/lib/headers.lo -fPIC -DPIC -o src/lib/.libs/headers.o
+#15 7.521 mkdir: cannot create directory 'src/lib/.libs': File exists
+#15 7.521 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/compat.c -MMD -MF src/lib/compat.dep -MT src/lib/compat.lo -fPIC -DPIC -o src/lib/.libs/compat.o
+#15 7.521 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/file.c -MMD -MF src/lib/file.dep -MT src/lib/file.lo -fPIC -DPIC -o src/lib/.libs/file.o
+#15 7.521 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/base/base.c -MMD -MF src/base/base.dep -MT src/base/base.lo -fPIC -DPIC -o src/base/.libs/base.o
+#15 7.523 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/hash.c -MMD -MF src/lib/hash.dep -MT src/lib/hash.lo -fPIC -DPIC -o src/lib/.libs/hash.o
+#15 7.523 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/base/ctrl_socket.c -MMD -MF src/base/ctrl_socket.dep -MT src/base/ctrl_socket.lo -fPIC -DPIC -o src/base/.libs/ctrl_socket.o
+#15 7.523 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/base/filter.c -MMD -MF src/base/filter.dep -MT src/base/filter.lo -fPIC -DPIC -o src/base/.libs/filter.o
+#15 7.525 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/crc32.c -MMD -MF src/lib/crc32.dep -MT src/lib/crc32.lo -fPIC -DPIC -o src/lib/.libs/crc32.o
+#15 7.525 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/cmd_parser.c -MMD -MF src/lib/cmd_parser.dep -MT src/lib/cmd_parser.lo -fPIC -DPIC -o src/lib/.libs/cmd_parser.o
+#15 7.528 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/lib.c -MMD -MF src/lib/lib.dep -MT src/lib/lib.lo -fPIC -DPIC -o src/lib/.libs/lib.o
+#15 7.547 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/llist.c -o src/lib/llist.lo -MMD -MF src/lib/llist.dep -MT src/lib/llist.lo
+#15 7.602 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/llist.c -MMD -MF src/lib/llist.dep -MT src/lib/llist.lo -fPIC -DPIC -o src/lib/.libs/llist.o
+#15 7.631 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/log.c -o src/lib/log.lo -MMD -MF src/lib/log.dep -MT src/lib/log.lo
+#15 7.646 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/set.c -o src/lib/set.lo -MMD -MF src/lib/set.dep -MT src/lib/set.lo
+#15 7.676 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/log.c -MMD -MF src/lib/log.dep -MT src/lib/log.lo -fPIC -DPIC -o src/lib/.libs/log.o
+#15 7.687 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/set.c -MMD -MF src/lib/set.dep -MT src/lib/set.lo -fPIC -DPIC -o src/lib/.libs/set.o
+#15 7.717 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/str.c -o src/lib/str.lo -MMD -MF src/lib/str.dep -MT src/lib/str.lo
+#15 7.758 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/timing.c -o src/lib/timing.lo -MMD -MF src/lib/timing.dep -MT src/lib/timing.lo
+#15 7.760 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var.c -o src/lib/var.lo -MMD -MF src/lib/var.dep -MT src/lib/var.lo
+#15 7.760 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_html.c -o src/lib/var_export_html.lo -MMD -MF src/lib/var_export_html.dep -MT src/lib/var_export_html.lo
+#15 7.777 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/str.c -MMD -MF src/lib/str.dep -MT src/lib/str.lo -fPIC -DPIC -o src/lib/.libs/str.o
+#15 7.810 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_html.c -MMD -MF src/lib/var_export_html.dep -MT src/lib/var_export_html.lo -fPIC -DPIC -o src/lib/.libs/var_export_html.o
+#15 7.818 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/timing.c -MMD -MF src/lib/timing.dep -MT src/lib/timing.lo -fPIC -DPIC -o src/lib/.libs/timing.o
+#15 7.820 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_line.c -o src/lib/var_export_line.lo -MMD -MF src/lib/var_export_line.dep -MT src/lib/var_export_line.lo
+#15 7.827 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var.c -MMD -MF src/lib/var.dep -MT src/lib/var.lo -fPIC -DPIC -o src/lib/.libs/var.o
+#15 7.853 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_text.c -o src/lib/var_export_text.lo -MMD -MF src/lib/var_export_text.dep -MT src/lib/var_export_text.lo
+#15 7.853 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_xml.c -o src/lib/var_export_xml.lo -MMD -MF src/lib/var_export_xml.dep -MT src/lib/var_export_xml.lo
+#15 7.883 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_line.c -MMD -MF src/lib/var_export_line.dep -MT src/lib/var_export_line.lo -fPIC -DPIC -o src/lib/.libs/var_export_line.o
+#15 7.885 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/xml.c -o src/lib/xml.lo -MMD -MF src/lib/xml.dep -MT src/lib/xml.lo
+#15 7.916 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_text.c -MMD -MF src/lib/var_export_text.dep -MT src/lib/var_export_text.lo -fPIC -DPIC -o src/lib/.libs/var_export_text.o
+#15 7.921 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/coverage/branch_info.c -o src/coverage/branch_info.lo -MMD -MF src/coverage/branch_info.dep -MT src/coverage/branch_info.lo
+#15 7.925 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/var_export_xml.c -MMD -MF src/lib/var_export_xml.dep -MT src/lib/var_export_xml.lo -fPIC -DPIC -o src/lib/.libs/var_export_xml.o
+#15 7.926 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/lib/xml.c -MMD -MF src/lib/xml.dep -MT src/lib/xml.lo -fPIC -DPIC -o src/lib/.libs/xml.o
+#15 7.968 mkdir src/coverage/.libs
+#15 7.969 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/coverage/branch_info.c -MMD -MF src/coverage/branch_info.dep -MT src/coverage/branch_info.lo -fPIC -DPIC -o src/coverage/.libs/branch_info.o
+#15 7.978 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/coverage/code_coverage.c -o src/coverage/code_coverage.lo -MMD -MF src/coverage/code_coverage.dep -MT src/coverage/code_coverage.lo
+#15 8.014 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/coverage/code_coverage.c -MMD -MF src/coverage/code_coverage.dep -MT src/coverage/code_coverage.lo -fPIC -DPIC -o src/coverage/.libs/code_coverage.o
+#15 8.046 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/com.c -o src/debugger/com.lo -MMD -MF src/debugger/com.dep -MT src/debugger/com.lo
+#15 8.071 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/debugger.c -o src/debugger/debugger.lo -MMD -MF src/debugger/debugger.dep -MT src/debugger/debugger.lo
+#15 8.079 mkdir src/debugger/.libs
+#15 8.079 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/com.c -MMD -MF src/debugger/com.dep -MT src/debugger/com.lo -fPIC -DPIC -o src/debugger/.libs/com.o
+#15 8.104 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/debugger.c -MMD -MF src/debugger/debugger.dep -MT src/debugger/debugger.lo -fPIC -DPIC -o src/debugger/.libs/debugger.o
+#15 8.118 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/handler_dbgp.c -o src/debugger/handler_dbgp.lo -MMD -MF src/debugger/handler_dbgp.dep -MT src/debugger/handler_dbgp.lo
+#15 8.147 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/handlers.c -o src/debugger/handlers.lo -MMD -MF src/debugger/handlers.dep -MT src/debugger/handlers.lo
+#15 8.163 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/handler_dbgp.c -MMD -MF src/debugger/handler_dbgp.dep -MT src/debugger/handler_dbgp.lo -fPIC -DPIC -o src/debugger/.libs/handler_dbgp.o
+#15 8.164 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/ip_info.c -o src/debugger/ip_info.lo -MMD -MF src/debugger/ip_info.dep -MT src/debugger/ip_info.lo
+#15 8.198 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/handlers.c -MMD -MF src/debugger/handlers.dep -MT src/debugger/handlers.lo -fPIC -DPIC -o src/debugger/.libs/handlers.o
+#15 8.208 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/develop.c -o src/develop/develop.lo -MMD -MF src/develop/develop.dep -MT src/develop/develop.lo
+#15 8.210 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/monitor.c -o src/develop/monitor.lo -MMD -MF src/develop/monitor.dep -MT src/develop/monitor.lo
+#15 8.218 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/debugger/ip_info.c -MMD -MF src/debugger/ip_info.dep -MT src/debugger/ip_info.lo -fPIC -DPIC -o src/debugger/.libs/ip_info.o
+#15 8.241 mkdir src/develop/.libs
+#15 8.243 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/develop.c -MMD -MF src/develop/develop.dep -MT src/develop/develop.lo -fPIC -DPIC -o src/develop/.libs/develop.o
+#15 8.263 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/php_functions.c -o src/develop/php_functions.lo -MMD -MF src/develop/php_functions.dep -MT src/develop/php_functions.lo
+#15 8.266 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/monitor.c -MMD -MF src/develop/monitor.dep -MT src/develop/monitor.lo -fPIC -DPIC -o src/develop/.libs/monitor.o
+#15 8.308 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/php_functions.c -MMD -MF src/develop/php_functions.dep -MT src/develop/php_functions.lo -fPIC -DPIC -o src/develop/.libs/php_functions.o
+#15 8.370 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/stack.c -o src/develop/stack.lo -MMD -MF src/develop/stack.dep -MT src/develop/stack.lo
+#15 8.418 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/stack.c -MMD -MF src/develop/stack.dep -MT src/develop/stack.lo -fPIC -DPIC -o src/develop/.libs/stack.o
+#15 8.422 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/superglobals.c -o src/develop/superglobals.lo -MMD -MF src/develop/superglobals.dep -MT src/develop/superglobals.lo
+#15 8.447 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/gcstats/gc_stats.c -o src/gcstats/gc_stats.lo -MMD -MF src/gcstats/gc_stats.dep -MT src/gcstats/gc_stats.lo
+#15 8.449 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/profiler/profiler.c -o src/profiler/profiler.lo -MMD -MF src/profiler/profiler.dep -MT src/profiler/profiler.lo
+#15 8.451 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_computerized.c -o src/tracing/trace_computerized.lo -MMD -MF src/tracing/trace_computerized.dep -MT src/tracing/trace_computerized.lo
+#15 8.473 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_flamegraph.c -o src/tracing/trace_flamegraph.lo -MMD -MF src/tracing/trace_flamegraph.dep -MT src/tracing/trace_flamegraph.lo
+#15 8.491 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/develop/superglobals.c -MMD -MF src/develop/superglobals.dep -MT src/develop/superglobals.lo -fPIC -DPIC -o src/develop/.libs/superglobals.o
+#15 8.504 mkdir src/gcstats/.libs
+#15 8.506 mkdir src/profiler/.libs
+#15 8.507 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/profiler/profiler.c -MMD -MF src/profiler/profiler.dep -MT src/profiler/profiler.lo -fPIC -DPIC -o src/profiler/.libs/profiler.o
+#15 8.508 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/gcstats/gc_stats.c -MMD -MF src/gcstats/gc_stats.dep -MT src/gcstats/gc_stats.lo -fPIC -DPIC -o src/gcstats/.libs/gc_stats.o
+#15 8.514 mkdir src/tracing/.libs
+#15 8.516 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_computerized.c -MMD -MF src/tracing/trace_computerized.dep -MT src/tracing/trace_computerized.lo -fPIC -DPIC -o src/tracing/.libs/trace_computerized.o
+#15 8.516 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_html.c -o src/tracing/trace_html.lo -MMD -MF src/tracing/trace_html.dep -MT src/tracing/trace_html.lo
+#15 8.534 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_flamegraph.c -MMD -MF src/tracing/trace_flamegraph.dep -MT src/tracing/trace_flamegraph.lo -fPIC -DPIC -o src/tracing/.libs/trace_flamegraph.o
+#15 8.536 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_textual.c -o src/tracing/trace_textual.lo -MMD -MF src/tracing/trace_textual.dep -MT src/tracing/trace_textual.lo
+#15 8.594 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_textual.c -MMD -MF src/tracing/trace_textual.dep -MT src/tracing/trace_textual.lo -fPIC -DPIC -o src/tracing/.libs/trace_textual.o
+#15 8.595 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/trace_html.c -MMD -MF src/tracing/trace_html.dep -MT src/tracing/trace_html.lo -fPIC -DPIC -o src/tracing/.libs/trace_html.o
+#15 8.602 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=compile cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/tracing.c -o src/tracing/tracing.lo -MMD -MF src/tracing/tracing.dep -MT src/tracing/tracing.lo
+#15 8.649 cc -I. -I/tmp/pear/temp/xdebug -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -DZEND_COMPILE_DL_EXT=1 -c /tmp/pear/temp/xdebug/src/tracing/tracing.c -MMD -MF src/tracing/tracing.dep -MT src/tracing/tracing.lo -fPIC -DPIC -o src/tracing/.libs/tracing.o
+#15 9.177 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=link cc -shared -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -I/tmp/pear/temp/xdebug/src -I/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/src -DHAVE_CONFIG_H -g -O2 -D_GNU_SOURCE -o xdebug.la -export-dynamic -avoid-version -prefer-pic -module -rpath /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/modules xdebug.lo src/base/base.lo src/base/ctrl_socket.lo src/base/filter.lo src/lib/usefulstuff.lo src/lib/cmd_parser.lo src/lib/compat.lo src/lib/crc32.lo src/lib/file.lo src/lib/hash.lo src/lib/headers.lo src/lib/lib.lo src/lib/llist.lo src/lib/log.lo src/lib/set.lo src/lib/str.lo src/lib/timing.lo src/lib/var.lo src/lib/var_export_html.lo src/lib/var_export_line.lo src/lib/var_export_text.lo src/lib/var_export_xml.lo src/lib
+#15 9.177 /xml.lo src/coverage/branch_info.lo src/coverage/code_coverage.lo src/debugger/com.lo src/debugger/debugger.lo src/debugger/handler_dbgp.lo src/debugger/handlers.lo src/debugger/ip_info.lo src/develop/develop.lo src/develop/monitor.lo src/develop/php_functions.lo src/develop/stack.lo src/develop/superglobals.lo src/gcstats/gc_stats.lo src/profiler/profiler.lo src/tracing/trace_computerized.lo src/tracing/trace_flamegraph.lo src/tracing/trace_html.lo src/tracing/trace_textual.lo src/tracing/tracing.lo -lm
+#15 9.260 cc -shared .libs/xdebug.o src/base/.libs/base.o src/base/.libs/ctrl_socket.o src/base/.libs/filter.o src/lib/.libs/usefulstuff.o src/lib/.libs/cmd_parser.o src/lib/.libs/compat.o src/lib/.libs/crc32.o src/lib/.libs/file.o src/lib/.libs/hash.o src/lib/.libs/headers.o src/lib/.libs/lib.o src/lib/.libs/llist.o src/lib/.libs/log.o src/lib/.libs/set.o src/lib/.libs/str.o src/lib/.libs/timing.o src/lib/.libs/var.o src/lib/.libs/var_export_html.o src/lib/.libs/var_export_line.o src/lib/.libs/var_export_text.o src/lib/.libs/var_export_xml.o src/lib/.libs/xml.o src/coverage/.libs/branch_info.o src/coverage/.libs/code_coverage.o src/debugger/.libs/com.o src/debugger/.libs/debugger.o src/debugger/.libs/handler_dbgp.o src/debugger/.libs/handlers.o src/debugger/.libs/ip_info.o src/develop/.libs/develop.o src/develop/.libs/monitor.o src/develop/.libs/php_functions.o src/develop/.libs/stack.o src/develop/.libs/superglobals.o src/gcstats/.libs/gc_stats.o src/profiler/.libs/profiler.o src/tracing/.libs/trace_computerized.o
+#15 9.260 src/tracing/.libs/trace_flamegraph.o src/tracing/.libs/trace_html.o src/tracing/.libs/trace_textual.o src/tracing/.libs/tracing.o -lm -Wl,-soname -Wl,xdebug.so -o .libs/xdebug.so
+#15 9.283 creating xdebug.la
+#15 9.286 (cd .libs && rm -f xdebug.la && ln -s ../xdebug.la xdebug.la)
+#15 9.286 /bin/bash /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/libtool --tag=CC --mode=install cp ./xdebug.la /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/modules
+#15 9.295 cp ./.libs/xdebug.so /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/modules/xdebug.so
+#15 9.299 cp ./.libs/xdebug.lai /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/modules/xdebug.la
+#15 9.306 PATH="$PATH:/sbin" ldconfig -n /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/modules
+#15 9.306 ----------------------------------------------------------------------
+#15 9.306 Libraries have been installed in:
+#15 9.306 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/xdebug-3.4.7/modules
+#15 9.306
+#15 9.306 If you ever happen to want to link against installed libraries
+#15 9.306 in a given directory, LIBDIR, you must either use libtool, and
+#15 9.306 specify the full pathname of the library, or use the `-LLIBDIR'
+#15 9.306 flag during linking and do at least one of the following:
+#15 9.306 - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
+#15 9.306 during execution
+#15 9.306 - add LIBDIR to the `LD_RUN_PATH' environment variable
+#15 9.306 during linking
+#15 9.307 - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
+#15 9.307 - have your system administrator add LIBDIR to `/etc/ld.so.conf'
+#15 9.307
+#15 9.307 See any operating system documentation about shared libraries for
+#15 9.307 more information, such as the ld(1) and ld.so(8) manual pages.
+#15 9.307 ----------------------------------------------------------------------
+#15 9.307
+#15 9.308 Build complete.
+#15 9.308 Don't forget to run 'make test'.
+#15 9.308
+#15 9.309 running: make -j12 INSTALL_ROOT="/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7" install
+#15 9.310 Makefile:243: warning: overriding recipe for target 'test'
+#15 9.310 Makefile:134: warning: ignoring old recipe for target 'test'
+#15 9.317
+#15 9.326 Installing shared extensions: /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib/php/extensions/no-debug-zts-20240924/
+#15 9.326 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#15 9.330 +----------------------------------------------------------------------+
+#15 9.330 | |
+#15 9.331 | INSTALLATION INSTRUCTIONS |
+#15 9.331 | ========================= |
+#15 9.331 | |
+#15 9.332 | See https://xdebug.org/install.php#configure-php for instructions |
+#15 9.332 | on how to enable Xdebug for PHP. |
+#15 9.332 | |
+#15 9.333 | Documentation is available online as well: |
+#15 9.333 | - A list of all settings: https://xdebug.org/docs-settings.php |
+#15 9.333 | - A list of all functions: https://xdebug.org/docs-functions.php |
+#15 9.334 | - Profiling instructions: https://xdebug.org/docs-profiling2.php |
+#15 9.334 | - Remote debugging: https://xdebug.org/docs-debugger.php |
+#15 9.335 | |
+#15 9.335 | |
+#15 9.335 | NOTE: Please disregard the message |
+#15 9.336 | You should add "extension=xdebug.so" to php.ini |
+#15 9.336 | that is emitted by the PECL installer. This does not work for |
+#15 9.336 | Xdebug. |
+#15 9.337 | |
+#15 9.337 +----------------------------------------------------------------------+
+#15 9.345 shtool:echo:Warning: unable to determine terminal sequence for bold mode
+#15 9.348
+#15 9.349
+#15 9.349 running: find "/tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7" | xargs ls -dils
+#15 9.350 28947747 0 drwxr-xr-x 1 root root 6 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7
+#15 9.350 28948229 0 drwxr-xr-x 1 root root 10 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr
+#15 9.350 28948230 0 drwxr-xr-x 1 root root 6 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local
+#15 9.350 28948231 0 drwxr-xr-x 1 root root 6 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib
+#15 9.350 28948232 0 drwxr-xr-x 1 root root 20 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib/php
+#15 9.350 28948233 0 drwxr-xr-x 1 root root 42 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib/php/extensions
+#15 9.350 28948234 0 drwxr-xr-x 1 root root 18 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib/php/extensions/no-debug-zts-20240924
+#15 9.350 28948235 2008 -rwxr-xr-x 1 root root 2103480 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so
+#15 9.351
+#15 9.351 Build process completed successfully
+#15 9.351 Installing '/usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so'
+#15 9.353 install ok: channel://pecl.php.net/xdebug-3.4.7
+#15 9.354 configuration option "php_ini" is not set to php.ini location
+#15 9.354 You should add "zend_extension=/usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so" to php.ini
+#15 9.361 Removing symbols from /usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so... done (1634696 bytes saved).
+#15 9.366 Check if the xdebug module can be loaded... Error loading the "xdebug" extension:
+#15 9.395 Xdebug: [Step Debug] Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+#15 ERROR: process "/bin/sh -c install-php-extensions xdebug" did not complete successfully: exit code: 1
+------
+ > [dev 1/1] RUN install-php-extensions xdebug:
+9.350 28948235 2008 -rwxr-xr-x 1 root root 2103480 Nov 17 22:41 /tmp/pear/temp/pear-build-defaultuser0hrfp6mka4c8dfxrThN/install-xdebug-3.4.7/usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so
+9.351
+9.351 Build process completed successfully
+9.351 Installing '/usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so'
+9.353 install ok: channel://pecl.php.net/xdebug-3.4.7
+9.354 configuration option "php_ini" is not set to php.ini location
+9.354 You should add "zend_extension=/usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so" to php.ini
+9.361 Removing symbols from /usr/local/lib/php/extensions/no-debug-zts-20240924/xdebug.so... done (1634696 bytes saved).
+9.366 Check if the xdebug module can be loaded... Error loading the "xdebug" extension:
+9.395 Xdebug: [Step Debug] Could not connect to debugging client. Tried: host.docker.internal:9003 (through xdebug.client_host/xdebug.client_port).
+------
diff --git a/docker-compose.override.example.yml b/docker-compose.override.example.yml
new file mode 100644
index 0000000..98174ff
--- /dev/null
+++ b/docker-compose.override.example.yml
@@ -0,0 +1,21 @@
+services:
+ fairpm-wordpress:
+ networks:
+ traefik: ~
+ app-net: ~
+
+ labels:
+ - "traefik.enable=true"
+ - "traefik.http.routers.fairpm.rule=Host(`local.fair.pm`)"
+ - "traefik.http.routers.fairpm-https.rule=Host(`local.fair.pm`)"
+ - "traefik.http.routers.fairpm-https.tls=true"
+
+# volumes:
+# - ./docker/fairpm-wordpress/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini
+
+ ports:
+ - "${LOCAL_WEB_PORT:-8080}:80"
+
+ fairpm-db:
+ ports:
+ - "${LOCAL_DB_PORT:-3306}:3306"
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..af7290f
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,92 @@
+#
+# Development environment for fair.pm website
+#
+
+services:
+ fairpm-wordpress:
+ build:
+ dockerfile: docker/fairpm-wordpress/Dockerfile
+ context: .
+ target: dev
+ restart: unless-stopped
+ volumes:
+ - .:/app
+ - ./docker/fairpm-wordpress/php.local.ini:/usr/local/etc/php/conf.d/php.local.ini
+ - ./docker/fairpm-wordpress/Caddyfile:/etc/caddy/Caddyfile
+ networks:
+ app-net: ~
+ labels:
+ - 'traefik.enable=true'
+ - 'traefik.http.routers.fairpm.rule=HostRegexp(`^(?i)^((api|translate|chat|beacon)\.)?local\.fair\.pm$`)'
+ - 'traefik.http.routers.fairpm-https.rule=HostRegexp(`^(?i)^((api|translate|chat|beacon)\.)?local\.fair\.pm$`)'
+ - 'traefik.http.routers.fairpm-https.tls=true'
+ healthcheck:
+ # healthchecks on the app container are generally useless for dev environments:
+ # the last thing we want is for traefik to drop the backend because of 500 errors -- we want to see those!
+ disable: true
+ # not using curl -f for dev, since a 500 error keeps the container from appearing in traefik
+ test: ["CMD", "curl", "http://localhost/"]
+ timeout: 2s
+ retries: 10
+ start_period: 10s
+ start_interval: 1s
+
+
+ fairpm-db:
+ image: mariadb@sha256:607835cd628b78e2876f6a586d0ec37b296c47683b31ef750002d3d17d3d8f7a # 12.0.2
+ restart: unless-stopped
+ environment:
+ MYSQL_DATABASE: wordpress
+ MYSQL_USER: wp
+ MYSQL_PASSWORD: password
+ MYSQL_ROOT_PASSWORD: password
+ volumes:
+ - fairpm-db-vol:/var/lib/mysql
+ networks:
+ app-net: ~
+ healthcheck:
+ test: [ "CMD", "mariadb-admin", "ping", "-h", "localhost", "-u", "root", "-ppassword" ]
+ timeout: 2s
+ retries: 10
+ start_period: 10s
+ start_interval: 1s
+
+
+# redis:
+# image: redis:latest
+# networks:
+# - app-net
+#
+# mailpit:
+# image: axllent/mailpit:v1.21.4
+# restart: unless-stopped
+# networks:
+# app-net: ~
+# environment:
+# MP_MAX_MESSAGES: 500
+# MP_SMTP_AUTH_ACCEPT_ANY: 1
+# MP_SMTP_AUTH_ALLOW_INSECURE: 1
+
+# prometheus:
+# image: prom/prometheus:latest
+# volumes:
+# - ./docker/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
+# networks:
+# - app-net
+#
+# grafana:
+# image: grafana/grafana:latest
+# networks:
+# - app-net
+# volumes:
+# - ./docker/grafana:/etc/grafana/provisioning
+
+volumes:
+ fairpm-db-vol:
+
+networks:
+ app-net: ~
+ aspire-net:
+ external: true
+ traefik:
+ external: true
diff --git a/docker/fairpm-wordpress/Caddyfile b/docker/fairpm-wordpress/Caddyfile
new file mode 100644
index 0000000..67a95e6
--- /dev/null
+++ b/docker/fairpm-wordpress/Caddyfile
@@ -0,0 +1,62 @@
+{
+ # Global options
+ auto_https off
+ admin off
+ frankenphp
+}
+
+:80 {
+ root * /app/web
+
+ # Enable PHP processing
+ php_server {
+ resolve_root_symlink
+ }
+
+ # Handle WordPress pretty permalinks
+ try_files {path} {path}/ /index.php?{query}
+
+ # Roots Bedrock uses a /wp/ prefix that many things do not respect, so rewrite /wp-admin and /wp-includes
+ rewrite /wp-admin/* /wp{uri}
+ rewrite /wp-includes/* /wp{uri}
+ rewrite /wp-*.php /wp{uri}
+ rewrite /xmlrpc.php /wp{uri}
+
+ # Serve static files directly
+ file_server
+
+ # Enable compression
+ encode zstd br gzip
+
+ # Enable logging
+ log {
+ output stderr
+ format json
+ }
+
+ # Global headers on all responses
+ header {
+ Permissions-Policy attribution-reporting=(), interest-cohort=()
+ X-Content-Type-Options nosniff
+ X-Frame-Options SAMEORIGIN
+
+ # HSTS in dev means if Traefik cert config isn't right, you can't click through the self-signed cert warning
+ # Strict-Transport-Security max-age=31536000; includeSubDomains
+
+ # https://github.com/fairpm/server/issues/57#issuecomment-3572057011
+ # Still in flux: img-src will probably have to be relaxed for one
+ # Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' https://github.com https://raw.githubusercontent.com data:; font-src 'self' data:; connect-src 'self'; frame-ancestors 'none'; base-uri 'self'; form-action 'self';"
+ }
+
+ # Add cache headers for static assets
+ @static {
+ path *.css *.js *.ico *.gif *.jpg *.jpeg *.png *.svg *.woff *.woff2
+ }
+ header @static Cache-Control "public, max-age=31536000"
+
+ # Disable WordPress admin-ajax.php caching
+ @adminAjax {
+ path /wp-admin/admin-ajax.php
+ }
+ header @adminAjax Cache-Control "no-cache, no-store, must-revalidate"
+}
diff --git a/docker/fairpm-wordpress/Dockerfile b/docker/fairpm-wordpress/Dockerfile
new file mode 100644
index 0000000..ffef44d
--- /dev/null
+++ b/docker/fairpm-wordpress/Dockerfile
@@ -0,0 +1,47 @@
+ARG FRANKENPHP_TAG="1.5.0-php8.4.7-bookworm@sha256:661bbd11ce8b9bbf51ba6e13d1cb7ea533466984142d936411df325922c4cdb1"
+ARG COMPOSER_TAG="2.9.1@sha256:7384cf9fa70b710af02c9f40bec6e44472e07138efa5ab3428a058087c0d2724"
+ARG WP_CLI_TAG="cli-2.12.0-php8.4@sha256:a5c7dabbf09133101c69cc43f4b972783f96f04b2f9e71c5a516c569e22e28fc"
+
+FROM composer:${COMPOSER_TAG} AS composer_img
+FROM wordpress:${WP_CLI_TAG} AS wpcli_img
+FROM dunglas/frankenphp:${FRANKENPHP_TAG} AS base
+
+COPY --from=composer_img /usr/bin/composer /usr/bin/composer
+COPY --from=wpcli_img /usr/local/bin/wp /usr/local/bin/wp
+
+RUN install-php-extensions apcu gd gmp intl mysqli opcache redis sqlite3 zip
+
+RUN groupadd --gid 100000 app \
+ && useradd --uid 100000 --gid 100000 --create-home --shell /bin/bash app \
+ && chown -R app:app /config /data \
+ && apt update \
+ && apt install -y curl default-mysql-client git less
+
+COPY docker/fairpm-wordpress/Caddyfile /etc/caddy/Caddyfile
+COPY docker/fairpm-wordpress/php.local.ini /usr/local/etc/php/conf.d/php.local.ini
+
+WORKDIR /app
+CMD ["frankenphp", "run", "--config", "/etc/caddy/Caddyfile"]
+
+################
+FROM base AS dev
+
+# xdebug is still not enabled by default. uncomment the line in docker-compose.override.yml to enable.
+RUN install-php-extensions xdebug
+
+RUN apt update \
+ && apt install sudo \
+ && adduser app sudo \
+ && echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
+
+USER app
+
+################
+FROM base AS prod
+
+COPY . /app
+RUN chown -R app:app /app
+
+USER app
+RUN composer install --no-dev --no-interaction --no-progress --optimize-autoloader --working-dir=/app
+
diff --git a/docker/fairpm-wordpress/php.local.ini b/docker/fairpm-wordpress/php.local.ini
new file mode 100644
index 0000000..e782b44
--- /dev/null
+++ b/docker/fairpm-wordpress/php.local.ini
@@ -0,0 +1,18 @@
+date.timezone="UTC"
+expose_php=Off
+error_reporting = E_ALL & ~E_DEPRECATED
+display_errors = Off
+display_startup_errors = Off
+log_errors = On
+error_log = /dev/stderr
+log_errors_max_len = 1024
+ignore_repeated_errors = On
+ignore_repeated_source = Off
+html_errors = Off
+
+
+
+# xdebug.mode = develop,debug
+# xdebug.start_with_request = yes
+# xdeug.start_upon_error = yes
+# xdebug.client_host = host.docker.internal
diff --git a/docker/fairpm-wordpress/xdebug.ini b/docker/fairpm-wordpress/xdebug.ini
new file mode 100644
index 0000000..85ada9d
--- /dev/null
+++ b/docker/fairpm-wordpress/xdebug.ini
@@ -0,0 +1,8 @@
+; Note this file is not copied into the container by default.
+; To enable in your dev stack, uncomment the line in docker-compose.override.yml, then run `docker compose restart`
+
+xdebug.mode = develop,debug
+xdebug.start_with_request = yes
+xdeug.start_upon_error = yes
+xdebug.client_host = host.docker.internal ; for docker desktop hosts
+; xdebug.client_host = 172.17.0.1 ; for linux hosts
diff --git a/index.php b/index.php
index 099bc9a..744e42d 100644
--- a/index.php
+++ b/index.php
@@ -18,4 +18,4 @@
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
-require( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' );
+require( dirname( __FILE__ ) . '/web/wp/wp-blog-header.php' );
diff --git a/meta/bin/fixup-db-snapshot b/meta/bin/fixup-db-snapshot
new file mode 100755
index 0000000..1f325f2
--- /dev/null
+++ b/meta/bin/fixup-db-snapshot
@@ -0,0 +1,86 @@
+#!/bin/bash
+
+here=$(dirname "$0")
+source "$here"/prelude.bash
+
+wp db check
+
+#### URLs
+
+# Global replacements
+wp search-replace '//fair.pm' '//local.fair.pm'
+wp search-replace '//api.fair.pm' '//api.local.fair.pm'
+wp search-replace '//translate.fair.pm' '//translate.local.fair.pm'
+wp search-replace '//chat.fair.pm' '//chat.local.fair.pm'
+wp search-replace '//beacon.fair.pm' '//beacon.local.fair.pm'
+
+wp db query "update wp_site set domain = 'local.fair.pm'"
+wp db query "update wp_blogs set domain = 'local.fair.pm'"
+
+# Fix Site URLS
+wp db query "update wp_options set option_value = 'https://local.fair.pm' where option_name = 'home'"
+wp db query "update wp_options set option_value = 'https://local.fair.pm/wp' where option_name = 'siteurl'"
+
+wp db query "update wp_blogs set domain = 'api.local.fair.pm' where blog_id = 2"
+wp db query "update wp_2_options set option_value = 'https://api.local.fair.pm' where option_name = 'home'"
+wp db query "update wp_2_options set option_value = 'https://api.local.fair.pm/wp' where option_name = 'siteurl'"
+
+wp db query "update wp_blogs set domain = 'translate.local.fair.pm' where blog_id = 3"
+wp db query "update wp_3_options set option_value = 'https://translate.local.fair.pm' where option_name = 'home'"
+wp db query "update wp_3_options set option_value = 'https://translate.local.fair.pm/wp' where option_name = 'siteurl'"
+
+wp db query "update wp_blogs set domain = 'chat.local.fair.pm' where blog_id = 4"
+wp db query "update wp_4_options set option_value = 'https://chat.local.fair.pm' where option_name = 'home'"
+wp db query "update wp_4_options set option_value = 'https://chat.local.fair.pm/wp' where option_name = 'siteurl'"
+
+wp db query "update wp_blogs set domain = 'beacon.local.fair.pm' where blog_id = 5"
+wp db query "update wp_5_options set option_value = 'https://beacon.local.fair.pm' where option_name = 'home'"
+wp db query "update wp_5_options set option_value = 'https://beacon.local.fair.pm/wp' where option_name = 'siteurl'"
+
+#### Users
+
+# Set all user passwords to 'password'
+wp user update 1 --user_pass=password --skip-email
+wp db query "update wp_users set user_pass = (select user_pass from wp_users where id = 1)"
+
+# Redact user data. Any personal information in posts or comments will remain in place
+wp db query "update wp_users set user_login = md5(user_login), user_nicename = md5(user_login), user_email = concat(md5(user_login), '@redacted.example.com'), display_name = md5(user_login), user_url = '', user_activation_key = ''"
+wp db query "update wp_usermeta set meta_value = md5(meta_value) where meta_key in ('nickname', 'first_name', 'last_name')"
+wp db query "update wp_usermeta set meta_value = 'local.fair.pm' where meta_key = 'source_domain'"
+wp db query "update wp_signups set user_login = md5(user_login), user_email = concat(md5(user_login), '@redacted.example.com')"
+
+# Rename user 1 to admin
+wp db query "update wp_users set user_login = 'admin', user_nicename = 'admin', display_name = 'admin', user_email = 'admin@example.com' where id = 1"
+wp db query "update wp_usermeta set meta_value = 'admin' where meta_key = 'nickname' and user_id = 1"
+wp db query "update wp_usermeta set meta_value = 'admin' where meta_key = 'first_name' and user_id = 1"
+wp db query "update wp_usermeta set meta_value = 'user' where meta_key = 'last_name' and user_id = 1"
+
+# Misc
+wp db query "update wp_sitemeta set meta_value = 'admin@example.com' where meta_key = 'admin_email'"
+wp db query "update wp_sitemeta set meta_value = 'a:1:{i:0;s:5:\"admin\";}' where meta_key = 'site_admins'"
+wp db query "update wp_options set option_value = 'admin@example.com' where option_name = 'admin_email'"
+wp db query "update wp_2_options set option_value = 'admin@example.com' where option_name = 'admin_email'"
+wp db query "update wp_3_options set option_value = 'admin@example.com' where option_name = 'admin_email'"
+wp db query "update wp_4_options set option_value = 'admin@example.com' where option_name = 'admin_email'"
+wp db query "update wp_5_options set option_value = 'admin@example.com' where option_name = 'admin_email'"
+wp db query "truncate wp_registration_log"
+
+
+#### Plugins
+
+wp plugin activate aspireexplorer --url=local.fair.pm
+wp plugin activate fair-beacon --url=beacon.local.fair.pm
+wp plugin activate fair-plugin --network
+wp plugin activate f-api --url=api.local.fair.pm
+wp plugin activate f-translate --url=translate.local.fair.pm
+wp plugin activate fastly --url=local.fair.pm
+wp plugin activate git-updater --network
+# wp plugin activate glotpress-wp --url=translate.fair.pm # not activated in prod either
+wp plugin activate public-post-preview --url=local.fair.pm
+wp plugin activate query-monitor --network
+# wp plugin activate s3-uploads --url=local.fair.pm
+wp plugin activate wp-redis --url=local.fair.pm
+
+wp plugin deactivate aws-ses-wp-mail --network
+wp plugin deactivate f-gd-cron --url=local.fair.pm
+wp plugin deactivate wordpress-seo --url=local.fair.pm
diff --git a/meta/bin/prelude.bash b/meta/bin/prelude.bash
new file mode 100644
index 0000000..5baba06
--- /dev/null
+++ b/meta/bin/prelude.bash
@@ -0,0 +1,14 @@
+# This file should be sourced, not run
+
+set -o errexit
+set -o nounset
+set -o pipefail
+
+# These are not exported, but will be visible in the tool's script if they need them
+__ORIG_PWD=$PWD
+__HERE=$(dirname "$0")
+
+function warn { echo "$@" >&2; }
+function die { warn "$@"; exit 1; }
+
+cd "$__HERE"/../..
diff --git a/meta/bin/scrape b/meta/bin/scrape
new file mode 100755
index 0000000..b29af94
--- /dev/null
+++ b/meta/bin/scrape
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+here=$(dirname "$0")
+source "$here"/prelude.bash
+
+[[ ${DANGEROUSLY_ALLOW_SCRAPE:-} = fair-site ]] || die "DANGEROUSLY_ALLOW_SCRAPE not set or not equal to 'fair-site' -- aborted"
+
+SLEEP=${SLEEP:-10}
+
+function dcexec() { docker compose exec fairpm-wordpress "$@"; }
+
+function main() {
+ database=${1:-}
+ [[ -n $database ]] || die "Usage: $0 path/to/database.sql"
+
+ docker compose down --remove-orphans --volumes
+ docker compose up --build -d
+
+ echo "Sleeping for $SLEEP seconds..."
+ sleep "$SLEEP"
+
+ dcexec wp db import "$database"
+ dcexec meta/bin/fixup-db-snapshot
+}
+
+main "$@"
diff --git a/web/.gitignore b/web/.gitignore
new file mode 100644
index 0000000..cc7a6af
--- /dev/null
+++ b/web/.gitignore
@@ -0,0 +1 @@
+/wp/
diff --git a/web/app/mu-plugins/.gitignore b/web/app/mu-plugins/.gitignore
new file mode 100644
index 0000000..c5c549c
--- /dev/null
+++ b/web/app/mu-plugins/.gitignore
@@ -0,0 +1,4 @@
+*
+!.gitignore
+!bedrock-autoloader.php
+!disallow-indexing.php
diff --git a/web/app/mu-plugins/bedrock-autoloader.php b/web/app/mu-plugins/bedrock-autoloader.php
new file mode 100644
index 0000000..023c5c9
--- /dev/null
+++ b/web/app/mu-plugins/bedrock-autoloader.php
@@ -0,0 +1,16 @@
+
@@ -329,7 +329,7 @@ function wporg_references( $project, $entry ) {
references as $reference ) :
- list( $file, $line ) = array_pad( explode( ':', $reference ), 2, 0 );
+ [ $file, $line ] = array_pad( explode( ':', $reference ), 2, 0 );
if ( $source_url = $project->source_url( $file, $line ) ) :
?>
diff --git a/content/plugins/f-translate/templates/images/browsehappy.png b/web/app/plugins/f-translate/templates/images/browsehappy.png
similarity index 100%
rename from content/plugins/f-translate/templates/images/browsehappy.png
rename to web/app/plugins/f-translate/templates/images/browsehappy.png
diff --git a/content/plugins/f-translate/templates/images/glotpress.png b/web/app/plugins/f-translate/templates/images/glotpress.png
similarity index 100%
rename from content/plugins/f-translate/templates/images/glotpress.png
rename to web/app/plugins/f-translate/templates/images/glotpress.png
diff --git a/content/plugins/f-translate/templates/images/openverse.png b/web/app/plugins/f-translate/templates/images/openverse.png
similarity index 100%
rename from content/plugins/f-translate/templates/images/openverse.png
rename to web/app/plugins/f-translate/templates/images/openverse.png
diff --git a/content/plugins/f-translate/templates/index-locales.php b/web/app/plugins/f-translate/templates/index-locales.php
similarity index 100%
rename from content/plugins/f-translate/templates/index-locales.php
rename to web/app/plugins/f-translate/templates/index-locales.php
diff --git a/content/plugins/f-translate/templates/js/autosize.min.js b/web/app/plugins/f-translate/templates/js/autosize.min.js
similarity index 100%
rename from content/plugins/f-translate/templates/js/autosize.min.js
rename to web/app/plugins/f-translate/templates/js/autosize.min.js
diff --git a/content/plugins/f-translate/templates/js/chartist.min.js b/web/app/plugins/f-translate/templates/js/chartist.min.js
similarity index 100%
rename from content/plugins/f-translate/templates/js/chartist.min.js
rename to web/app/plugins/f-translate/templates/js/chartist.min.js
diff --git a/content/plugins/f-translate/templates/js/details-element-polyfill.min.js b/web/app/plugins/f-translate/templates/js/details-element-polyfill.min.js
similarity index 100%
rename from content/plugins/f-translate/templates/js/details-element-polyfill.min.js
rename to web/app/plugins/f-translate/templates/js/details-element-polyfill.min.js
diff --git a/content/plugins/f-translate/templates/js/editor.js b/web/app/plugins/f-translate/templates/js/editor.js
similarity index 100%
rename from content/plugins/f-translate/templates/js/editor.js
rename to web/app/plugins/f-translate/templates/js/editor.js
diff --git a/content/plugins/f-translate/templates/locale-project.php b/web/app/plugins/f-translate/templates/locale-project.php
similarity index 100%
rename from content/plugins/f-translate/templates/locale-project.php
rename to web/app/plugins/f-translate/templates/locale-project.php
diff --git a/content/plugins/f-translate/templates/locale-projects.php b/web/app/plugins/f-translate/templates/locale-projects.php
similarity index 100%
rename from content/plugins/f-translate/templates/locale-projects.php
rename to web/app/plugins/f-translate/templates/locale-projects.php
diff --git a/content/plugins/f-translate/templates/project-form.php b/web/app/plugins/f-translate/templates/project-form.php
similarity index 100%
rename from content/plugins/f-translate/templates/project-form.php
rename to web/app/plugins/f-translate/templates/project-form.php
diff --git a/content/plugins/f-translate/templates/project-mass-create-sets.php b/web/app/plugins/f-translate/templates/project-mass-create-sets.php
similarity index 100%
rename from content/plugins/f-translate/templates/project-mass-create-sets.php
rename to web/app/plugins/f-translate/templates/project-mass-create-sets.php
diff --git a/content/plugins/f-translate/templates/projects-wp-plugins-contributors.php b/web/app/plugins/f-translate/templates/projects-wp-plugins-contributors.php
similarity index 100%
rename from content/plugins/f-translate/templates/projects-wp-plugins-contributors.php
rename to web/app/plugins/f-translate/templates/projects-wp-plugins-contributors.php
diff --git a/content/plugins/f-translate/templates/projects-wp-plugins-language-packs.php b/web/app/plugins/f-translate/templates/projects-wp-plugins-language-packs.php
similarity index 100%
rename from content/plugins/f-translate/templates/projects-wp-plugins-language-packs.php
rename to web/app/plugins/f-translate/templates/projects-wp-plugins-language-packs.php
diff --git a/content/plugins/f-translate/templates/projects-wp-plugins.php b/web/app/plugins/f-translate/templates/projects-wp-plugins.php
similarity index 100%
rename from content/plugins/f-translate/templates/projects-wp-plugins.php
rename to web/app/plugins/f-translate/templates/projects-wp-plugins.php
diff --git a/content/plugins/f-translate/templates/projects-wp-themes-contributors.php b/web/app/plugins/f-translate/templates/projects-wp-themes-contributors.php
similarity index 100%
rename from content/plugins/f-translate/templates/projects-wp-themes-contributors.php
rename to web/app/plugins/f-translate/templates/projects-wp-themes-contributors.php
diff --git a/content/plugins/f-translate/templates/projects-wp-themes-language-packs.php b/web/app/plugins/f-translate/templates/projects-wp-themes-language-packs.php
similarity index 100%
rename from content/plugins/f-translate/templates/projects-wp-themes-language-packs.php
rename to web/app/plugins/f-translate/templates/projects-wp-themes-language-packs.php
diff --git a/content/plugins/f-translate/templates/projects-wp-themes.php b/web/app/plugins/f-translate/templates/projects-wp-themes.php
similarity index 100%
rename from content/plugins/f-translate/templates/projects-wp-themes.php
rename to web/app/plugins/f-translate/templates/projects-wp-themes.php
diff --git a/content/plugins/f-translate/templates/settings-edit.php b/web/app/plugins/f-translate/templates/settings-edit.php
similarity index 100%
rename from content/plugins/f-translate/templates/settings-edit.php
rename to web/app/plugins/f-translate/templates/settings-edit.php
diff --git a/content/plugins/f-translate/templates/settings.php b/web/app/plugins/f-translate/templates/settings.php
similarity index 100%
rename from content/plugins/f-translate/templates/settings.php
rename to web/app/plugins/f-translate/templates/settings.php
diff --git a/content/plugins/f-translate/templates/stats-overview.php b/web/app/plugins/f-translate/templates/stats-overview.php
similarity index 100%
rename from content/plugins/f-translate/templates/stats-overview.php
rename to web/app/plugins/f-translate/templates/stats-overview.php
diff --git a/content/plugins/f-translate/templates/stats-plugin-themes-overview.php b/web/app/plugins/f-translate/templates/stats-plugin-themes-overview.php
similarity index 100%
rename from content/plugins/f-translate/templates/stats-plugin-themes-overview.php
rename to web/app/plugins/f-translate/templates/stats-plugin-themes-overview.php
diff --git a/content/plugins/f-translate/templates/style.css b/web/app/plugins/f-translate/templates/style.css
similarity index 100%
rename from content/plugins/f-translate/templates/style.css
rename to web/app/plugins/f-translate/templates/style.css
diff --git a/content/plugins/f-translate/templates/translation-row-editor.php b/web/app/plugins/f-translate/templates/translation-row-editor.php
similarity index 100%
rename from content/plugins/f-translate/templates/translation-row-editor.php
rename to web/app/plugins/f-translate/templates/translation-row-editor.php
diff --git a/content/plugins/f-translate/templates/translation-row-preview.php b/web/app/plugins/f-translate/templates/translation-row-preview.php
similarity index 100%
rename from content/plugins/f-translate/templates/translation-row-preview.php
rename to web/app/plugins/f-translate/templates/translation-row-preview.php
diff --git a/content/plugins/f-translate/templates/translation-set-form.php b/web/app/plugins/f-translate/templates/translation-set-form.php
similarity index 100%
rename from content/plugins/f-translate/templates/translation-set-form.php
rename to web/app/plugins/f-translate/templates/translation-set-form.php
diff --git a/content/plugins/f-translate/templates/translations.api.php b/web/app/plugins/f-translate/templates/translations.api.php
similarity index 100%
rename from content/plugins/f-translate/templates/translations.api.php
rename to web/app/plugins/f-translate/templates/translations.api.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/class-plugin.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-consistency.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-index.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-locale.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-maintenance.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-redirector.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-stats.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-directory.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-plugins.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php b/web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php
similarity index 100%
rename from content/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php
rename to web/app/plugins/f-translate/wporg-gp-routes/inc/routes/class-wp-themes.php
diff --git a/content/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php b/web/app/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php
similarity index 92%
rename from content/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php
rename to web/app/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php
index 26f6551..d9bf044 100644
--- a/content/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php
+++ b/web/app/plugins/f-translate/wporg-gp-routes/wporg-gp-routes.php
@@ -20,7 +20,7 @@
}
// Register an Autoloader for all files.
-Autoload\register_class_path( __NAMESPACE__, __DIR__ . '/inc' );
+Autoload\register_class_path( __NAMESPACE__, __DIR__ . '/inc');
// Instantiate the Plugin.
Plugin::get_instance();
diff --git a/web/app/themes/.gitignore b/web/app/themes/.gitignore
new file mode 100644
index 0000000..63ea916
--- /dev/null
+++ b/web/app/themes/.gitignore
@@ -0,0 +1 @@
+/*/
diff --git a/web/app/uploads/.gitignore b/web/app/uploads/.gitignore
new file mode 100644
index 0000000..d6b7ef3
--- /dev/null
+++ b/web/app/uploads/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/web/index.php b/web/index.php
new file mode 100644
index 0000000..8aabe93
--- /dev/null
+++ b/web/index.php
@@ -0,0 +1,7 @@
+