2017 © Pedro PelĆ”ez
 

library packagegenerator

Generate hierarchical PHP classes based on a WSDL

image

wsdltophp/packagegenerator

Generate hierarchical PHP classes based on a WSDL

  • Tuesday, July 31, 2018
  • by wsdltophp
  • Repository
  • 20 Watchers
  • 133 Stars
  • 8,946 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 31 Forks
  • 14 Open issues
  • 75 Versions
  • 52 % Grown

The README.md

Package Generator

Package Generator generates a PHP SDK from any WSDL., (*1)

License Latest Stable Version TeamCity build status Scrutinizer Code Quality Code Coverage Total Downloads StyleCI SymfonyInsight, (*2)

Package Generator generates a PHP SDK from any WSDL so you can easily consume any SOAP Web Service without wondering how SOAP is used under the hood., (*3)

Package Generator provides many options to generate your package even if a few are required. This project has been tested with many WSDL and is currently used on the platform Providr.IO., (*4)

Package Generator generates files that are detailed in the MANIFEST. You are encouraged to read it to understand how and why the files are generated in addition to the way the generated classes are supposed to be used., (*5)

Installation

In a project:

composer require wsdltophp/packagegenerator --dev

With command line:

$ wget https://phar.wsdltophp.com/wsdltophp-php7.phar
$ chmod +x wsdltophp-php7.phar
$ mv wsdltophp-php7.phar /usr/local/bin/wsdltophp

With Docker:

$ docker run --rm -it mikaelcom/wsdltophp:tagname

Usage

There is two ways to generate your package (apart from being in a project and generating it through the command line):, (*6)

  • standalone (default behaviour): this means the package is generated as an independent project with its own composer.json file. At the end of the generation, the root directory where the package has been generated will contain the composer.json, the composer.lock file and the vendor directory.
  • not standalone: this means the package is generated as part of an existing project using its own composer.json file.

The standalone option is fully detailed in the Standalone section., (*7)

All the options are fully detailed in the Options page., (*8)

In a project:

use WsdlToPhp\PackageGenerator\ConfigurationReader\GeneratorOptions;
use WsdlToPhp\PackageGenerator\Generator\Generator;

// Options definition: the configuration file parameter is optional
$options = GeneratorOptions::instance(/* '/path/file.yml' */);
$options
    ->setOrigin('http://developer.ebay.com/webservices/latest/ebaySvc.wsdl')
    ->setDestination('./MySdk')
    ->setComposerName('myproject/mysdk');
// Generator instantiation
$generator = new Generator($options);
// Package generation
$generator->generatePackage();

With command line:

The command line is:, (*9)

$ wsdltophp generate:package \
    --urlorpath="http://developer.ebay.com/webservices/latest/ebaySvc.wsdl" \
    --destination="./MySdk" \
    --composer-name="myproject/mysdk" \
    --force

In order to see all the used options, just remove the --force argument., (*10)

With Docker:

Such as with the command line above, simply use the docker run command line before:, (*11)

$ docker run --rm -it --volume $PWD:/var/www mikaelcom/wsdltophp:tagname generate:package \
    --urlorpath="http://developer.ebay.com/webservices/latest/ebaySvc.wsdl" \
    --destination="/var/www/MySdk" \
    --composer-name="myproject/mysdk" \
    --force

In order to see all the used options, just remove the --force argument., (*12)

Versions

4.0

First released on 03 April 2021, maintained until version 6.0 is released. Please read the UPGRADE-4.0 note in order to acknowledge the main changes., (*13)

3.0

First released on 04 May 2018, maintained until version 5.0 is released. Please read the UPGRADE-3.0 note in order to acknowledge the main changes., (*14)

NOT MAINTAINED ANYMORE: even if version 5 is not published nor is expected soon, maintaining 2 versions, especially for an old PHP version, is time consuming, sorry for the people who would be still using it which would encounter issues fixed in the latest version., (*15)

2.0

Not maintained since 03 April 2021., (*16)

First released on 29 Apr 2016, maintained until version 4.0 is released., (*17)

1.0

Not maintained anymore, (*18)

Testing

# launch all tests
$ phpunit

# launch a testsuite: command, configuration, utils, model, container, parser, file, packagegenerator
$ phpunit --testsuite=model

Testing using Docker

Thanks to the Docker image of phpfarm, tests can be run locally under any PHP version using the cli: - php-7.4, (*19)

First of all, you need to create your container which you can do using docker-compose by running the below command line from the root directory of the project:, (*20)

$ docker-compose up -d --build

You then have a container named package_generator in which you can run composer commands and php cli commands such as:, (*21)

# install deps in container (using update ensure it does use the composer.lock file if there is any)
$ docker exec -it package_generator php-7.4 /usr/bin/composer update
# run tests in container
$ docker exec -it package_generator php-7.4 -dmemory_limit=-1 vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details. In addition, code documentation is at doc.wsdltophp.com., (*22)

Credits

Developers who helped on this project are listed in the composer.json file as Contributor and are: - Gemorroj - ceeram - Georgiy Oganisyan - Jan Zaeske - Tom Mottram - Catirau Mihail - Alexander M. Turek - Valérian Girard - hordijk - Andreas Möller - Andreas Kintzinger - Hendrik Luup - Jacob Dreesen - Clifford Vickrey - Arnaud POINTET - dypa - tbreuss - Paul Melekhov - Alex KrÔtký, (*23)

FAQ

If you have any question, please read the Options page about the available options to generate the package., (*24)

There is also a FAQ that contains miscellaneous questions about the package generation and its usage., (*25)

Then if you still have a question, feel free to create an issue., (*26)

License

The MIT License (MIT). Please see License File for more information., (*27)

The Versions

31/07 2018

2.x-dev

2.9999999.9999999.9999999-dev https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Mƶller
by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail
by hordijk

php generator soap wsdl

31/07 2018

dev-develop

dev-develop https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Andreas Mƶller
by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail
by hordijk

php generator soap wsdl

26/07 2018

dev-master

9999999-dev https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

26/07 2018

3.0.3

3.0.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

26/07 2018

2.9.4

2.9.4.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

18/05 2018

3.0.2

3.0.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

18/05 2018

2.9.3

2.9.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

09/05 2018

dev-feature/issue-134

dev-feature/issue-134 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

09/05 2018

2.9.2

2.9.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

09/05 2018

3.0.1

3.0.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

04/05 2018

3.0.0

3.0.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

17/04 2018

dev-release/3.0.0

dev-release/3.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

13/02 2018

2.9.1

2.9.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

13/02 2018

dev-feature/issue-133

dev-feature/issue-133 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

20/12 2017

dev-feature/issue-125

dev-feature/issue-125 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

08/12 2017

2.9.0

2.9.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram
by Catirau Mihail

php generator soap wsdl

24/11 2017

dev-feature/issue-123

dev-feature/issue-123 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram

php generator soap wsdl

17/09 2017

2.8.5

2.8.5.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram

php generator soap wsdl

08/09 2017

2.8.4

2.8.4.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram

php generator soap wsdl

03/09 2017

2.8.3

2.8.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske
by Tom Mottram

php generator soap wsdl

12/08 2017

2.8.2

2.8.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

12/08 2017

2.8.1

2.8.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

09/08 2017

2.8.0

2.8.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

20/06 2017

dev-feature/issue-96

dev-feature/issue-96 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

02/06 2017

2.7.3

2.7.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

21/05 2017

2.7.2

2.7.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

16/05 2017

2.7.1

2.7.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

09/05 2017

2.7.0

2.7.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

04/04 2017

dev-feature/issue-82

dev-feature/issue-82 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

27/03 2017

1.x-dev

1.9999999.9999999.9999999-dev https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

27/03 2017

1.11.1

1.11.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

27/03 2017

2.6.1

2.6.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

23/03 2017

2.6.0

2.6.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

23/03 2017

1.11.0

1.11.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

25/02 2017

1.10.1

1.10.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

25/02 2017

2.5.1

2.5.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

14/01 2017

2.5.0

2.5.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

14/01 2017

1.10.0

1.10.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

14/12 2016

1.9.1

1.9.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

14/12 2016

2.4.1

2.4.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

04/12 2016

1.9.0

1.9.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

04/12 2016

2.4.0

2.4.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

02/12 2016

1.8.1

1.8.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

02/12 2016

2.3.1

2.3.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

03/11 2016

2.3.0

2.3.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

03/11 2016

1.8.0

1.8.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

20/06 2016

2.2.0

2.2.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

20/06 2016

1.7.0

1.7.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

21/05 2016

1.6.0

1.6.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

21/05 2016

2.1.0

2.1.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

09/05 2016

2.0.1

2.0.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

09/05 2016

1.5.1

1.5.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

29/04 2016

2.0.0

2.0.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

27/04 2016

1.5.0

1.5.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

02/03 2016

1.4.3.1

1.4.3.1 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

21/02 2016

1.4.3

1.4.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine
by Jan Zaeske

php generator soap wsdl

16/02 2016

1.4.2

1.4.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine

php generator soap wsdl

14/02 2016

1.4.1

1.4.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine

php generator soap wsdl

14/02 2016

1.4.0

1.4.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj
by GroxExMachine

php generator soap wsdl

10/02 2016

1.3.1

1.3.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

09/02 2016

1.3.0

1.3.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

18/09 2015

1.2.0

1.2.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

15/09 2015

1.1.3

1.1.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

11/09 2015

1.1.2

1.1.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

10/09 2015

1.1.1

1.1.1.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

08/09 2015

1.1.0

1.1.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

06/09 2015

1.0.0

1.0.0.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

30/08 2015

1.0.0rc04

1.0.0.0-RC04 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Ceeram
by Avatar Gemorroj

php generator soap wsdl

26/08 2015

1.0.0RC03

1.0.0.0-RC03 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Gemorroj

php generator soap wsdl

26/08 2015

1.0.0rc02

1.0.0.0-RC02 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Gemorroj

php generator soap wsdl

26/07 2015

1.0.0rc01

1.0.0.0-RC01 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar Gemorroj

php generator soap wsdl

16/07 2015

0.0.5

0.0.5.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

by Avatar Gemorroj

php generator soap wsdl

10/07 2015

0.0.4

0.0.4.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

by Avatar Gemorroj

php generator soap wsdl

27/06 2015

0.0.3

0.0.3.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

by Avatar Gemorroj

php generator soap wsdl

04/06 2015

0.0.2

0.0.2.0 https://github.com/WsdlToPhp/PackageGenerator

Generate hierarchical PHP classes based on a WSDL

  Sources   Download

MIT

The Requires

 

by Avatar Gemorroj

php generator soap wsdl