Skip to content

Commit a83bb8b

Browse files
authored
Merge pull request #16 from Dhii/0.2.x
Revision for 0.2
2 parents 32b6304 + 1abbf93 commit a83bb8b

29 files changed

+1131
-1462
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BASE_PATH=./

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
/.idea/vagrant.xml
1111
/.idea/misc.xml
1212
/.idea/inspectionProfiles/
13+
/.env

.idea/module-interface.iml

Lines changed: 35 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php-test-framework.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 133 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/remote-mappings.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
language: php
2-
dist: precise
32
php:
4-
- '5.3'
5-
- '5.4'
6-
- '5.5'
7-
- '5.6'
8-
- '7.0'
93
- '7.1'
104
- '7.2'
115
- '7.3'
6+
- '7.4'
127
- nightly
138

149
matrix:
@@ -17,7 +12,6 @@ matrix:
1712
fast_finish: true
1813

1914
before_script:
20-
- phpenv config-add travis.php.ini
2115
- composer update --prefer-dist
2216
script:
2317
- vendor/bin/phpunit

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [[*next-version*]] - YYYY-MM-DD
8+
### Changed
9+
- Module `setup()` now returns a `ServiceProviderInterface` instance.
10+
- Module `run()` now requires the `ContainerInterface` argument.
11+
- Modules are no longer key-aware.
12+
13+
### Removed
14+
- `DependenciesAwareInterface` has been removed.
15+
- `ModuleFactoryInterface` has been removed.
16+
- `ModuleKeyAwareInterface` has been removed.
817

918
## [0.1] - 2019-11-05
1019
Stable release

0 commit comments

Comments
 (0)