Skip to content

Commit 78dc049

Browse files
committed
Merge branch 'release/1.0.0rc01'
2 parents 9d0077b + 9264849 commit 78dc049

27 files changed

+45
-24
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# For more information about the properties used in
2+
# this file, please see the EditorConfig documentation:
3+
# http://editorconfig.org/
4+
5+
root = true
6+
7+
[*]
8+
end_of_line = lf
9+
10+
[*.php]
11+
indent_style = space
12+
indent_size = 4

CHANGELOG.md

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,75 @@
11
CHANGELOG
22
=========
33

4+
1.0.0RC01
5+
---------
6+
- Major: update source code structure, put Component and Element fodlers under ```src``` fodler, update composer and phpunit accordingly
7+
48
0.0.16
59
-----
6-
Minor: correct annotation
10+
- Minor: correct annotation
711

812
0.0.15
913
-----
10-
Issue #3: fix constant declaration for specific value containing (
14+
- Issue #3: fix constant declaration for specific value containing (
1115

1216
0.0.14
1317
-----
14-
Improvement: make annotation splitting more clever using word wrap in order to keep
18+
- Improvement: make annotation splitting more clever using word wrap in order to keep
1519

1620
0.0.13
1721
-----
18-
Issue #2 : allow backslash for function/method parameter type
22+
- Issue #2 : allow backslash for function/method parameter type
1923

2024
0.0.12
2125
-----
22-
Refactoring : Use statements and Namespace are contained by a file not a class as each element should only knows what it contains not what that is around itself.
26+
- Refactoring : Use statements and Namespace are contained by a file not a class as each element should only knows what it contains not what that is around itself.
2327

2428
0.0.11
2529
-----
26-
Issue : allow backslash within class name for namespace
30+
- Issue : allow backslash within class name for namespace
2731

2832
0.0.10
2933
-----
30-
allow to provide annotation max length to use
34+
- Allow to provide annotation max length to use
3135

3236
0.0.9
3337
-----
34-
Fix issue : within a class, the additonal multi lines are not indented correcly
38+
- Fix issue : within a class, the additonal multi lines are not indented correcly
3539

3640
0.0.8
3741
-----
38-
Fix issue: workaround for known var_export issue with float value
42+
- Fix issue: workaround for known var_export issue with float value
3943

4044
0.0.7
4145
-----
42-
Fix issue: if variable has 'news' as value, the variable is generated with news instead of 'news'
46+
- Fix issue: if variable has 'news' as value, the variable is generated with news instead of 'news'
4347

4448
0.0.6
4549
-----
46-
Improvement: improve lisiblity and extensibility for PhpVariable and PhpFunctionParameter
50+
- Improvement: improve lisiblity and extensibility for PhpVariable and PhpFunctionParameter
4751

4852
0.0.5
4953
-----
50-
Fix issue: function parameter type is not tooken into account
54+
- Fix issue: function parameter type is not tooken into account
5155

5256
0.0.4
5357
-----
54-
Fix issue regarding property/variable that has no value but always has a null value assigned with an assignment sign
58+
- Fix issue regarding property/variable that has no value but always has a null value assigned with an assignment sign
5559

5660
0.0.3
5761
-----
58-
Apply PSR-2 rule: All PHP files MUST end with a single blank line.
62+
- Apply PSR-2 rule: All PHP files MUST end with a single blank line.
5963

6064
0.0.2
6165
-----
62-
Code coverage improved
63-
Several methods have been refactored to minimize them and consolidate them
64-
Component/PhpInterface has been added
65-
Component/PhpFile has been cleaned and enhanced
66-
Component/PhpClass has been cleaned
67-
Component/AbstractComponent has been enhanced
66+
- Code coverage improved
67+
- Several methods have been refactored to minimize them and consolidate them
68+
- Component/PhpInterface has been added
69+
- Component/PhpFile has been cleaned and enhanced
70+
- Component/PhpClass has been cleaned
71+
- Component/AbstractComponent has been enhanced
6872

6973
0.0.1
7074
-----
71-
Initial version
75+
- Initial version

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# WsdlToPhp Php Generator, a Real PHP source code generator
2+
[![Latest Stable Version](https://poser.pugx.org/wsdltophp/phpgenerator/version.png)](https://packagist.org/packages/wsdltophp/phpgenerator)
23
[![Build Status](https://api.travis-ci.org/WsdlToPhp/PhpGenerator.svg)](https://travis-ci.org/WsdlToPhp/PhpGenerator)
34
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/WsdlToPhp/PhpGenerator/badges/quality-score.png)](https://scrutinizer-ci.com/g/WsdlToPhp/PhpGenerator/)
45
[![Code Coverage](https://scrutinizer-ci.com/g/WsdlToPhp/PhpGenerator/badges/coverage.png)](https://scrutinizer-ci.com/g/WsdlToPhp/PhpGenerator/)

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"fabpot/php-cs-fixer": "~1.8"
2323
},
2424
"autoload": {
25-
"psr-4": { "WsdlToPhp\\PhpGenerator\\": "" }
25+
"psr-4": {
26+
"WsdlToPhp\\PhpGenerator\\": "src",
27+
"WsdlToPhp\\PhpGenerator\\Tests\\": "Tests"
28+
}
2629
}
2730
}

phpunit.xml.dist

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
</php>
1212

1313
<testsuite name="Test Suite">
14-
<directory>./Tests</directory>
14+
<directory>./Tests/</directory>
1515
</testsuite>
1616

1717
<filter>
1818
<whitelist>
1919
<directory>./</directory>
2020
<exclude>
21-
<directory>Tests/</directory>
21+
<directory>./Tests</directory>
22+
<directory>./vendor</directory>
2223
</exclude>
2324
</whitelist>
2425
</filter>

0 commit comments

Comments
 (0)