├── .github └── workflows │ └── build.yml ├── LICENSE.md ├── README.md ├── composer.json └── src ├── PHPClass2WSDL.php └── WSDL.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragosprotung/php2wsdl/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragosprotung/php2wsdl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragosprotung/php2wsdl/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragosprotung/php2wsdl/HEAD/composer.json -------------------------------------------------------------------------------- /src/PHPClass2WSDL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragosprotung/php2wsdl/HEAD/src/PHPClass2WSDL.php -------------------------------------------------------------------------------- /src/WSDL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragosprotung/php2wsdl/HEAD/src/WSDL.php --------------------------------------------------------------------------------