Skip to content

Commit ae65995

Browse files
committedDec 4, 2019
Fixed not found files + increased tests
1 parent 9da3326 commit ae65995

File tree

10 files changed

+29
-430
lines changed

10 files changed

+29
-430
lines changed
 

‎.circleci/config.yml

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2
22
jobs:
3-
build:
3+
test-php72:
44
docker:
55
- image: circleci/php:7.2-cli
66

@@ -28,4 +28,31 @@ jobs:
2828
name: Run tests / Symfony 5^0
2929
command: |
3030
composer update -n --prefer-dist --no-suggest
31-
php vendor/bin/phpunit
31+
php vendor/bin/phpunit
32+
33+
test-php74:
34+
docker:
35+
- image: circleci/php:7.4-cli
36+
37+
working_directory: ~/project
38+
steps:
39+
- checkout
40+
41+
- run:
42+
name: Install PHPUnit
43+
command: |
44+
composer require phpunit/phpunit:7.5.17 --prefer-dist --prefer-stable --prefer-lowest --no-suggest
45+
46+
- run:
47+
name: Run tests / Symfony 5^0
48+
command: |
49+
composer update -n --prefer-dist --no-suggest
50+
php vendor/bin/phpunit
51+
52+
53+
workflows:
54+
version: 2
55+
test:
56+
jobs:
57+
- test-php72
58+
- test-php74

‎DependencyInjection/ApisearchExtension.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,9 @@ protected function getConfigFiles(array $config): array
5858
{
5959
$files = [
6060
'repositories',
61-
'url',
62-
'twig',
6361
'http',
6462
'transformers',
6563
'exporters',
66-
'translator',
6764
'model',
6865
];
6966

‎Resources/config/translator.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

‎Resources/config/twig.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

‎Resources/config/url.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

‎Resources/public/js/interaction.js

Lines changed: 0 additions & 38 deletions
This file was deleted.

‎Resources/views/Macros/aggregations.html.twig

Lines changed: 0 additions & 197 deletions
This file was deleted.

‎Resources/views/Macros/order.html.twig

Lines changed: 0 additions & 27 deletions
This file was deleted.

‎Resources/views/Macros/pagination.html.twig

Lines changed: 0 additions & 34 deletions
This file was deleted.

‎Translator/AggregationTranslator.php

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.