├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── composer.json ├── doc-parser ├── doc-parser.php ├── doc └── animation.gif ├── features ├── availability.feature ├── bootstrap │ ├── AvailabilityContext.php │ ├── FeatureContext.php │ ├── PackageContext.php │ ├── ParserContext.php │ ├── ParserResultContext.php │ └── UtilsContext.php ├── package.feature ├── parser-result.feature ├── parser.feature ├── test-manual-files │ ├── datetime.setdate.html │ ├── datetime.setdate.json │ ├── eventhttp.setcallback.html │ ├── eventhttp.setcallback.json │ ├── function.array-diff.html │ ├── function.array-diff.json │ ├── function.chown.html │ ├── function.chown.json │ ├── function.json-encode.html │ ├── function.json-encode.json │ ├── function.str-replace.html │ ├── function.str-replace.json │ ├── function.strrpos.html │ ├── function.strrpos.json │ ├── reflectionclass.getname.html │ ├── reflectionclass.getname.json │ ├── splfileobject.fgetcsv.html │ └── splfileobject.fgetcsv.json └── utils.feature └── src ├── Availability.php ├── Command └── RunCommand.php ├── Package.php ├── Parser.php ├── ParserResult.php └── Utils.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/composer.json -------------------------------------------------------------------------------- /doc-parser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/doc-parser -------------------------------------------------------------------------------- /doc-parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/doc-parser.php -------------------------------------------------------------------------------- /doc/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/doc/animation.gif -------------------------------------------------------------------------------- /features/availability.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/availability.feature -------------------------------------------------------------------------------- /features/bootstrap/AvailabilityContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/bootstrap/AvailabilityContext.php -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/bootstrap/PackageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/bootstrap/PackageContext.php -------------------------------------------------------------------------------- /features/bootstrap/ParserContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/bootstrap/ParserContext.php -------------------------------------------------------------------------------- /features/bootstrap/ParserResultContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/bootstrap/ParserResultContext.php -------------------------------------------------------------------------------- /features/bootstrap/UtilsContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/bootstrap/UtilsContext.php -------------------------------------------------------------------------------- /features/package.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/package.feature -------------------------------------------------------------------------------- /features/parser-result.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/parser-result.feature -------------------------------------------------------------------------------- /features/parser.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/parser.feature -------------------------------------------------------------------------------- /features/test-manual-files/datetime.setdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/datetime.setdate.html -------------------------------------------------------------------------------- /features/test-manual-files/datetime.setdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/datetime.setdate.json -------------------------------------------------------------------------------- /features/test-manual-files/eventhttp.setcallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/eventhttp.setcallback.html -------------------------------------------------------------------------------- /features/test-manual-files/eventhttp.setcallback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/eventhttp.setcallback.json -------------------------------------------------------------------------------- /features/test-manual-files/function.array-diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.array-diff.html -------------------------------------------------------------------------------- /features/test-manual-files/function.array-diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.array-diff.json -------------------------------------------------------------------------------- /features/test-manual-files/function.chown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.chown.html -------------------------------------------------------------------------------- /features/test-manual-files/function.chown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.chown.json -------------------------------------------------------------------------------- /features/test-manual-files/function.json-encode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.json-encode.html -------------------------------------------------------------------------------- /features/test-manual-files/function.json-encode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.json-encode.json -------------------------------------------------------------------------------- /features/test-manual-files/function.str-replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.str-replace.html -------------------------------------------------------------------------------- /features/test-manual-files/function.str-replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.str-replace.json -------------------------------------------------------------------------------- /features/test-manual-files/function.strrpos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.strrpos.html -------------------------------------------------------------------------------- /features/test-manual-files/function.strrpos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/function.strrpos.json -------------------------------------------------------------------------------- /features/test-manual-files/reflectionclass.getname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/reflectionclass.getname.html -------------------------------------------------------------------------------- /features/test-manual-files/reflectionclass.getname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/reflectionclass.getname.json -------------------------------------------------------------------------------- /features/test-manual-files/splfileobject.fgetcsv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/splfileobject.fgetcsv.html -------------------------------------------------------------------------------- /features/test-manual-files/splfileobject.fgetcsv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/test-manual-files/splfileobject.fgetcsv.json -------------------------------------------------------------------------------- /features/utils.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/features/utils.feature -------------------------------------------------------------------------------- /src/Availability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/src/Availability.php -------------------------------------------------------------------------------- /src/Command/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/src/Command/RunCommand.php -------------------------------------------------------------------------------- /src/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/src/Package.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/ParserResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/src/ParserResult.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinsik/php-doc-parser/HEAD/src/Utils.php --------------------------------------------------------------------------------