-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated dependencies and basic php version * first green tests * greenbarred AddDropLabelsTest * greenbarred BeongsToManyRelationTest * greenbarred BelongsToRelationTest * greenbarred HasMnayRelationTest * greenbarred HasOneRelationTest * greenbarred ModelEventsTest * greenbarred OrdersAndLimitsTest * greenbarred ParameterGroupingTest * greenbarred PolymorphicHyperMorphToTest * greenbarred QueryingRelationsTest * greenbarred QueryScopesTest * greenbarred SimpleCRUDTest * greenbarred WheresTheTest * greenbarred all function tests * greenbarred ConnectionTest * greenbarred ConnectionFactoryTest * greenbarred BuilderTest * greenbarred GrammarTest * greenbarred ModelTest * greenbarred EloquentBuilderTest * greenbarred all tests * switched to alpine * updated client dependency * reworked authentication to not have to encode it * some code cleaning * Corrected autoloading tests * upgraded build steps to include all source files and composer installation * moved tests to dev autoload and removed vcs project
- Loading branch information
1 parent
f7cb970
commit 4202cbc
Showing
40 changed files
with
562 additions
and
720 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ composer.lock | |
|
||
*.sublime-workspace | ||
Examples/**/vendor | ||
|
||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM php:8.0-alpine | ||
|
||
RUN apk add --no-cache --virtual .build-deps $PHPIZE_DEPS \ | ||
&& pecl install xdebug \ | ||
&& docker-php-ext-enable xdebug \ | ||
&& apk del -f .build-deps | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
|
||
COPY composer.json composer.loc[k] ./ | ||
|
||
RUN composer install --ignore-platform-reqs #temporary workaround as the bolt library incorrectly enforces the sockets extension | ||
|
||
COPY Examples/ ./ | ||
COPY src/ ./ | ||
COPY tests/ ./ | ||
COPY phpunit.xml .travis.yml ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.