Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/mitas/cursor-rules/php-8.3git clone --depth 1 https://github.com/mitas/cursor-rulesWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02260 |
| Opus 5 | $0.00000 | $0.01130 |
| Sonnet 5 | $0.00000 | $0.00452 |
| Haiku 4.5 | $0.00000 | $0.00226 |
Grade A, and why
php-8.3 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PHP 8.3 Features and Best Practices
Overview
PHP 8.3 continues to refine the language with new features, performance improvements, and subtle enhancements. This document outlines the key features introduced in PHP 8.3 and provides best practices for their implementation.
Key Language Features
Typed Class Constants
PHP 8.3 introduces typed class constants, allowing you to specify the type of constant values.
class Configuration {
public const string DATABASE_DRIVER = 'mysql';
public const int CONNECTION_TIMEOUT = 30;
protected const array DEFAULT_OPTIONS = ['retries' => 3, 'timeout' => 5];
}
Best Practices:
- Use typed constants to enforce type safety for important configuration values
- Apply appropriate visibility modifiers (public, protected, private) to constants
- Use typed constants in combination with final when appropriate
- Document constants with PHPDoc comments for additional context
- Consider using enums instead of string constants for values that represent a fixed set of options
Dynamic Class Constant Fetch
PHP 8.3 enables fetching class constants dynamically, similar to dynamic property access.
class Constants {
public const ERROR_NOT_FOUND = 'not_found';
public const ERROR_UNAUTHORIZED = 'unauthorized';
}
function getErrorMessage(string $errorType): string {
return Constants::{"ERROR_$errorType"};
}
// Usage
$message = getErrorMessage('NOT_FOUND');
Best Practices:
- Use dynamic constant fetching when you need to access constants programmatically
- Validate the constant name before attempting to access it dynamically
- Consider using reflection for more complex dynamic constant access
- Document code that uses dynamic constant fetching thoroughly
- Use with caution as it can make code harder to understand and maintain
New #[\Override] Attribute
PHP 8.3 adds the #[\Override] attribute to explicitly mark methods that override a parent method or implement an interface method.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 337 lines · 2,260 tokens per session scan A 9e7b8e1d2c79
php-8.3 is a cursor rule published in the GitHub repository mitas/cursor-rules (2 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,260 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.