Skip to content

Conversation

andrewbroberg
Copy link

@andrewbroberg andrewbroberg commented Aug 31, 2025

Explain your changes

Fixes the README.md to have the correct install command for the package

Checklist

🛟 If you need help, consider asking for advice over in the Kinde community.

Copy link
Contributor

coderabbitai bot commented Aug 31, 2025

Walkthrough

The README installation instructions were updated to change the composer package reference from kinde-oss/kinde-php-sdk to kinde-auth-php. No code or API modifications are included.

Changes

Cohort / File(s) Summary of Changes
Docs
README.md
Updated installation snippet to require kinde-auth-php instead of kinde-oss/kinde-php-sdk.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 6cabb77 and 259aef6.

📒 Files selected for processing (1)
  • README.md (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: brettchaldecott
PR: kinde-oss/kinde-php-sdk#48
File: lib/Api/ConnectedAppsApi.php:487-487
Timestamp: 2025-05-29T12:55:46.825Z
Learning: Files in lib/Api/ and lib/Model/ directories of the kinde-php-sdk are auto-generated and should not be manually edited. Any fixes to typos or other issues in these files should be made in the source OpenAPI specification that generates the code, not in the generated PHP files themselves.
Learnt from: brettchaldecott
PR: kinde-oss/kinde-php-sdk#48
File: lib/Api/PermissionsApi.php:1393-1401
Timestamp: 2025-05-29T12:57:57.409Z
Learning: Auto-generated API client files in the Kinde PHP SDK (lib/Api/*Api.php) are generated by OpenAPI Generator and should not be manually modified. These files may contain unused helper methods that are included by the generator template, which is acceptable for auto-generated code.
📚 Learning: 2025-05-29T12:57:57.409Z
Learnt from: brettchaldecott
PR: kinde-oss/kinde-php-sdk#48
File: lib/Api/PermissionsApi.php:1393-1401
Timestamp: 2025-05-29T12:57:57.409Z
Learning: Auto-generated API client files in the Kinde PHP SDK (lib/Api/*Api.php) are generated by OpenAPI Generator and should not be manually modified. These files may contain unused helper methods that are included by the generator template, which is acceptable for auto-generated code.

Applied to files:

  • README.md
🔇 Additional comments (1)
README.md (1)

15-16: Install command is correct and consistent.

Verified the package name kinde-oss/kinde-auth-php exists on Packagist and matches Kinde’s docs. LGTM. (packagist.org, docs.kinde.com)

Comment on lines 12 to 17
## Installation

```bash
composer require kinde-oss/kinde-php-sdk
composer require kinde-oss/kinde-auth-php
```

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Quick scan to catch any lingering old package names.

Run to ensure no references to kinde-php-sdk or kinde-oss/kinde-php-sdk remain.


🏁 Script executed:

#!/bin/bash
rg -nP '(kinde-php-sdk|kinde-oss/kinde-php-sdk)'

Length of output: 927


Replace lingering references to the old kinde-php-sdk package
Update all instances of kinde-php-sdk or kinde-oss/kinde-php-sdk to the new kinde-oss/kinde-auth-php in:

  • run-tests.sh
  • run-examples.sh
  • playground/README.md, playground/symfony/README.md, playground/codeigniter/README.md
  • NAMESPACE_FIX.md
🤖 Prompt for AI Agents
In README.md around lines 12 to 17, there are lingering references to the old
package name; search for and replace all instances of "kinde-php-sdk" and
"kinde-oss/kinde-php-sdk" with "kinde-oss/kinde-auth-php" across the repository
(specifically update run-tests.sh, run-examples.sh, playground/README.md,
playground/symfony/README.md, playground/codeigniter/README.md, and
NAMESPACE_FIX.md), update any composer require lines, script invocations, and
docs to use the new package name, and confirm consistency by running the scripts
that reference the package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant