├── .travis.yml ├── LICENSE ├── README.md ├── external-libraries.png └── plugin ├── META-INF └── plugin.xml └── library └── library.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-library-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-library-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-library-plugin/HEAD/README.md -------------------------------------------------------------------------------- /external-libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-library-plugin/HEAD/external-libraries.png -------------------------------------------------------------------------------- /plugin/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-library-plugin/HEAD/plugin/META-INF/plugin.xml -------------------------------------------------------------------------------- /plugin/library/library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/phpstorm-library-plugin/HEAD/plugin/library/library.php --------------------------------------------------------------------------------