Skip to content

Commit 95e90b1

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 78dc049 + fa87b3b commit 95e90b1

25 files changed

+11
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ before_install:
1212
- composer self-update
1313

1414
install:
15-
- composer install
15+
- composer install --no-dev
1616

1717
script:
1818
- phpunit --coverage-text --coverage-clover=coverage.clover

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
1.0.0
5+
---------
6+
- First major release
7+
48
1.0.0RC01
59
---------
610
- Major: update source code structure, put Component and Element fodlers under ```src``` fodler, update composer and phpunit accordingly

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Rest assured that it is not tweaked for the purpose of the [PackageGenerator](ht
1212
## Main features
1313
This projet contains two main features:
1414

15-
- [Element](Element/README.md): generate basic elements
16-
- [Component](Component/README.md): generate structured complex elements
15+
- [Element](src/Element/README.md): generate basic elements
16+
- [Component](src/Component/README.md): generate structured complex elements
1717

1818
## Unit tests
1919
You can run the unit tests with the following command:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"autoload": {
2525
"psr-4": {
2626
"WsdlToPhp\\PhpGenerator\\": "src",
27-
"WsdlToPhp\\PhpGenerator\\Tests\\": "Tests"
27+
"WsdlToPhp\\PhpGenerator\\Tests\\": "tests"
2828
}
2929
}
3030
}

phpunit.xml.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
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>
2222
<directory>./vendor</directory>
2323
</exclude>
2424
</whitelist>
2525
</filter>
26-
</phpunit>
26+
</phpunit>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)