{"id":19763077,"url":"https://github.com/fdiskas/laravel-5-5","last_synced_at":"2026-05-12T11:43:12.440Z","repository":{"id":145457435,"uuid":"113985746","full_name":"FDiskas/laravel-5-5","owner":"FDiskas","description":"Laravel 5.5 benchmark on phpbenchmarks.com","archived":false,"fork":false,"pushed_at":"2017-12-12T14:37:23.000Z","size":49,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-28T10:17:01.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.phpbenchmarks.com/en/benchmark/laravel.html","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FDiskas.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-12T12:08:07.000Z","updated_at":"2018-10-05T10:10:46.000Z","dependencies_parsed_at":"2023-04-06T05:17:44.007Z","dependency_job_id":null,"html_url":"https://github.com/FDiskas/laravel-5-5","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FDiskas/laravel-5-5","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Flaravel-5-5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Flaravel-5-5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Flaravel-5-5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Flaravel-5-5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FDiskas","download_url":"https://codeload.github.com/FDiskas/laravel-5-5/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FDiskas%2Flaravel-5-5/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32938000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T09:19:52.626Z","status":"ssl_error","status_checked_at":"2026-05-12T09:17:33.438Z","response_time":102,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T04:08:05.918Z","updated_at":"2026-05-12T11:43:12.436Z","avatar_url":"https://github.com/FDiskas.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"http://www.phpbenchmarks.com/images/logo_github.png\"\u003e\n  \u003cbr\u003e\n  \u003ca href=\"http://www.phpbenchmarks.com\" target=\"_blank\"\u003ewww.phpbenchmarks.com\u003c/a\u003e\n\u003c/p\u003e\n\n## What is www.phpbenchmarks.com ?\n\nYou will find lot of benchmarks for PHP frameworks, ORM and libs here.\n\nYou can compare results between Apache Bench and Siege, PHP 5.6 to 7.2 and versions of your favorites PHP code.\n\n## What is this repository ?\n\nIt's benchmark source code for Laravel 5.5.\n\nYou will not find final source code here, as it's in [phpbenchmarks/laravel](https://github.com/phpbenchmarks/laravel) dependency.\n\nSee [changelog](changelog.md) to see optimisations.\n\nYou can find how we benchmark it [here](http://www.phpbenchmarks.com/en/benchmark-protocol).\n\n## Laravel 5.5.0\n\nBenchmark | Tool | PHP | Score\n--------- | ---- | --- | -----\n[Hello World](http://www.phpbenchmarks.com/en/benchmark/apache-bench/php-7.1/laravel-5.5.html#benchmark-hello-world) | Apache Bench | 7.1 | In progress\n[News](http://www.phpbenchmarks.com/en/benchmark/apache-bench/php-7.1/laravel-5.5.html#benchmark-news) | Apache Bench | 7.1 | In progress\n[Rest API](http://www.phpbenchmarks.com/en/benchmark/apache-bench/php-7.1/laravel-5.5.html#benchmark-rest) | Apache Bench | 7.1 | In progress\n\nScores are too low ? Do not hesitate to create a pull request, and ask a new benchmark !\n\n## Installation\n\nCreate _config/database.php_ :\n```php\n\u003c?php\nreturn [\n    'fetch' =\u003e PDO::FETCH_CLASS,\n    'default' =\u003e env('DB_CONNECTION', 'mysql'),\n    'connections' =\u003e [\n        'mysql' =\u003e [\n            'driver' =\u003e 'mysql',\n            'host' =\u003e env('DB_HOST', 'localhost'),\n            'database' =\u003e env('DB_DATABASE', 'DBNAME'),\n            'username' =\u003e env('DB_USERNAME', 'USERNAME'),\n            'password' =\u003e env('DB_PASSWORD', 'PASSWORD'),\n            'charset' =\u003e 'utf8',\n            'collation' =\u003e 'utf8_unicode_ci',\n            'prefix' =\u003e '',\n            'strict' =\u003e false,\n        ],\n    ],\n    'migrations' =\u003e 'migrations'\n];\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdiskas%2Flaravel-5-5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffdiskas%2Flaravel-5-5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdiskas%2Flaravel-5-5/lists"}