Go to file
Francis Besset e765ea746e [SoapBundle] Moved configuration of ComplexType aliases from config to PHP objects with annotations
Before:
``` yaml
be_simple_soap:
    services_classmap:
        Cutomer: My\Bundle\Entity\Customer
        Cart:    My\Bundle\Entity\Cart

After:
``` php
<?php

namespace My\Bundle\Entity;

use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;

/**
 * @Soap\Alias("Customer")
 */
class Customer
{
    // ... your PHP code
}

/**
 * @Soap\Alias("Cart")
 */
class Cart
{
    // ... your PHP code
}
2013-08-05 09:40:39 +02:00
src/BeSimple [SoapBundle] Moved configuration of ComplexType aliases from config to PHP objects with annotations 2013-08-05 09:40:39 +02:00
.gitignore Reorganized directories structure 2013-07-19 17:01:55 +02:00
.travis.yml Reorganized directories structure 2013-07-19 17:01:55 +02:00
composer.json Fixed tests 2013-07-25 09:53:04 +02:00
phpunit.xml.dist Fixed tests which require a webserver 2013-07-24 23:40:21 +02:00