All Projects → vim-php → Phpctags

vim-php / Phpctags

An enhanced ctags compatible index generator written in pure PHP. Released under GPLv2 license.

Projects that are alternatives of or similar to Phpctags

Jackson Dataformats Text
Uber-project for (some) standard Jackson textual format backends: csv, properties, yaml (xml to be added in future)
Stars: ✭ 258 (-0.77%)
Mutual labels:  hacktoberfest
Traccar
Traccar GPS Tracking System
Stars: ✭ 3,353 (+1189.62%)
Mutual labels:  hacktoberfest
Jschema
A simple, easy to use data modeling framework for JavaScript
Stars: ✭ 261 (+0.38%)
Mutual labels:  hacktoberfest
Hackerrank Problem Solving Python Solutions
Hackerrank Problem solving solutions in Python
Stars: ✭ 259 (-0.38%)
Mutual labels:  hacktoberfest
Svgwave
🌊 SVG Wave is a tiny, free and beautiful SVG gradient waves generator for your UI or website desgin. It offers dead simple UI to customize, and style your waves based on your theme specifications.
Stars: ✭ 255 (-1.92%)
Mutual labels:  hacktoberfest
Parse Sdk Ios Osx
The Objective-C iOS | macOS | watchOS | tvOS SDK for the Parse Platform
Stars: ✭ 2,788 (+972.31%)
Mutual labels:  hacktoberfest
Design Systems Cli
A CLI toolbox for creating design systems.
Stars: ✭ 257 (-1.15%)
Mutual labels:  hacktoberfest
Ember Cli Update
Update Ember CLI projects
Stars: ✭ 261 (+0.38%)
Mutual labels:  hacktoberfest
Openlibrary
One webpage for every book ever published!
Stars: ✭ 3,311 (+1173.46%)
Mutual labels:  hacktoberfest
Promise Pool
Map-like, concurrent promise processing
Stars: ✭ 258 (-0.77%)
Mutual labels:  hacktoberfest
Pywhatsapp
Python Automation using selenium & Scheduling of messages and media
Stars: ✭ 257 (-1.15%)
Mutual labels:  hacktoberfest
Doc
🦋 Raku documentation (tools and docs)
Stars: ✭ 259 (-0.38%)
Mutual labels:  hacktoberfest
Robusttoolbox
Client/Server Backend for Space Station 14
Stars: ✭ 259 (-0.38%)
Mutual labels:  hacktoberfest
Ja2 Stracciatella
The continuation of the venerable JA2-Stracciatella project.
Stars: ✭ 258 (-0.77%)
Mutual labels:  hacktoberfest
Haystack
Top level repository for Haystack, containing documentation and deployment scripts
Stars: ✭ 261 (+0.38%)
Mutual labels:  hacktoberfest
Motrix Webextension
A chrome extension for the Motrix Download Manager
Stars: ✭ 253 (-2.69%)
Mutual labels:  hacktoberfest
Wetty
Terminal in browser over http/https. (Ajaxterm/Anyterm alternative, but much better)
Stars: ✭ 3,076 (+1083.08%)
Mutual labels:  hacktoberfest
Core
Gibbon is a flexible, open source school management platform designed to make life better for teachers, students, parents and leaders.
Stars: ✭ 261 (+0.38%)
Mutual labels:  hacktoberfest
Transcripts
Changelog episode transcripts in Markdown format 📚
Stars: ✭ 260 (+0%)
Mutual labels:  hacktoberfest
Fq
[email protected]#$*&%Q (Message queue that is fast, brokered, in C and gets out of your way)
Stars: ✭ 260 (+0%)
Mutual labels:  hacktoberfest

phpctags

An enhanced php ctags index file generator compatible with http://ctags.sourceforge.net/FORMAT.

Using PHP_Parser as PHP syntax parsing backend, written in pure PHP. The generated ctags index file contains scope and access information about classes' methods and properties.

This tool was originally developed to enhance the PHP syntax outline surport for vim tagbar plugin. The enhanced functionality has been included into an addon plugin for tagbar as tagbar-phpctags.

Enjoy!

Download and installation

curl -Ss https://github.com/vim-php/phpctags/raw/gh-pages/install/phpctags.phar > phpctags
chmod +x phpctags

Optionally one can move it into a directory on the $PATH:

sudo mv phpctags /usr/local/bin/

Usage

Single file:

phpctags phpfile.php

Tags will be written to a tags file. In order to specify a different tags file use the -f option:

phpctags -f myphp.tags phpfile.php

Directory with recursive option:

phpctags -f myphp.tags -R target_directory

Build

We currently only support building PHAR executable for *nix like platform which provides make utility. If you are interested in building an executable for other platform, especially for Windows, please help yourself out. It should be easy though (Apologize for not being able to provide any help for this, I am really not a Windows guy), it also would be great if someone could provide a patch for this.

Installation is straightforward, make sure you have PHP's PHAR extension enabled, then run make in the root directory of the source, you will get a phpctags PHAR executable, add it to your $PATH, then you can invoke phpctags directly from anywhere.

See phpctags on packagist for more details.

Requirements

Acknowledgements

  • Snapi for composer support.
  • DeMarko for memory limit support.
  • Sander Marechal for improve console support.
  • Mark Wu for building a stand-alone PHAR executable.
  • InFog for maintaining the project since end of 2019.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].