PHPIntel
Auto-complete for PHP functions and objects
Details
Installs
- Total 190K
- Win 124K
- Mac 27K
- Linux 40K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 2 | 6 | 10 | 6 | 0 | 4 | 2 | 1 | 3 | 2 | 6 | 4 | 1 | 2 | 1 | 1 | 3 | 4 | 4 | 2 | 4 | 2 | 4 | 0 | 0 | 0 | 3 | 5 | 4 | 4 | 2 | 0 | 2 | 3 | 4 | 5 | 0 | 0 | 10 | 4 | 4 | 4 | 6 | 4 | 7 |
Mac | 0 | 0 | 3 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 4 | 0 | 2 |
Linux | 0 | 2 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 1 | 2 | 0 | 0 | 0 | 1 | 4 | 3 | 4 | 4 | 0 | 0 | 2 | 2 | 0 | 0 | 0 | 0 | 1 | 2 | 0 | 1 | 0 | 2 | 2 | 3 | 1 | 0 | 0 | 3 | 1 | 2 | 3 | 0 | 2 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimePHPIntel
PHP code scanner and analyzer for code intelligence within PHP projects.
Sublime Text 3: Checkout branch st3
for Sublime Text 3 compatible version
Setup
- Install using Package Control
- Create or open a project with PHP files
- Run the PHPIntel: Scan Project command from the command palette
After the initial scan, PHP files will be automatically re-scanned whenever you save them.
Go to declaration
To open a class declaration, place your cursor on the class name and press Ctrl+f5
or Cmd+f5
Magic and factory methods
You can teach SublimePHPIntel about magic and factory methods using regular expression matching. Some expressions for Magento and the Yii framework are already included. Please send pull requests with additional expressions for other frameworks that you'd like to see included out of the box.
For example, your code might have a factory method that returns a model:
App::getModel('modelname')->doSomething();
To get code completion for this, define a template for the factory in the configuration settings (Preferences | Package Settings | SublimePHPIntel | Settings - User).
Factory patterns are defined like so:
{
"customfactories":
[
{ "pattern": "<Regular expression>", "class": "<Class name>", option, ..., option },
{ "pattern": "<Regular expression>", "class": "<Class name>", option, ..., option },
...
{ "pattern": "<Regular expression>", "class": "<Class name>", option, ..., option }
]
}
- Patterns are just regular expressions.
- Class names are strings with optional numbered expressions that match capturing groups in the regular expressions.
- You need to double escape backslashes to preserve them.
For example, this: “json { "pattern”: “getModel\('(.*?)'\)”, “class”: “Model_%1”, “capitalize”: true }
...will cause this:
```php
getModel('abc')
…to be interpreted as: “php Model_Abc
**Options**
capitalize: *true|false* — *Uppercase the first letter of the captured expression*
## Known issues
I'm working on these issues:
- Variable assignment is not detected (for example: <code>$var = CODE</code> where CODE returns an object.
- Files are not removed from the index when they are deleted. For now, you'll need to rescan to remove them.
- Files added to the project from outside of the editor are not added to the index. For now, you'll either need to open the file and save it or rescan the project.
- I'm not completely happy with the way it deals with cases where the same class is declared more than once. Need to do some research to see how others deal with that.