-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compatibility with benchmark kit 4.0.0-DEV
- Loading branch information
Showing
68 changed files
with
152 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: '2.1' | ||
|
||
jobs: | ||
ValidateBenchmark: | ||
docker: | ||
- image: phpbenchmarks/benchmark-kit:4 | ||
working_directory: /var/www/benchmark | ||
steps: | ||
- checkout | ||
- run: | ||
name: /var/entrypoint.sh | ||
command: /var/entrypoint.sh --nginx-as-service | ||
- run: | ||
name: "benchmark:validate" | ||
command: "/var/benchmark-kit/bin/console benchmark:validate:all" | ||
|
||
workflows: | ||
version: '2.1' | ||
BenchmarkKit: | ||
jobs: | ||
- ValidateBenchmark |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
.idea/ | ||
vendor/ | ||
composer.lock | ||
/composer.lock | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
component: | ||
id: 1 | ||
benchmark: | ||
type: 4 | ||
relativeUrl: / | ||
sourceCode: | ||
entryPoint: public/index.php | ||
urls: | ||
template: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php' | ||
templatingLayout: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L6' | ||
templatingBlocks: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/templates/layout/layout_start.php#L31' | ||
templatingFunctions: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L8' | ||
templatingMacros: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L432' | ||
templatingEscapeStringHtml: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#856' | ||
templatingEscapeStringJs: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#2877' | ||
templatingVariables: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L5933' | ||
templatingOutputRaw: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L5933' | ||
templatingOutputUnknownVariables: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L6855' | ||
templatingOutputMethodCalls: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L7277' | ||
templatingIncludeTemplates: 'https://github.com/phpbenchmarks/php/tree/7.1.33_templating-small-overload_0/public/index.php#L9308' | ||
coreDependency: | ||
name: php | ||
version: 7.1.33 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
server { | ||
listen ____PORT____; | ||
server_name ____HOST____; | ||
root ____INSTALLATION_PATH____/public; | ||
location / { | ||
try_files $uri /index.php$is_args$args; | ||
} | ||
location ~ ^/(index).php(/|$) { | ||
fastcgi_pass unix:/run/php/____PHP_FPM_SOCK____; | ||
fastcgi_split_path_info ^(.+.php)(/.*)$; | ||
include fastcgi_params; | ||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | ||
fastcgi_param HTTPS off; | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
composer install --no-dev --classmap-authoritative --ansi |
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
"license": "proprietary", | ||
"type": "project", | ||
"require": { | ||
"php": "7.1.*" | ||
"php": "7.1.33" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.