Skip to content

Commit 6b7a7a2

Browse files
authored
Merge pull request #6 from elbformat/releation-field-helper
Relation Field Helper
2 parents c91842a + 3d85f92 commit 6b7a7a2

File tree

17 files changed

+654
-10937
lines changed

17 files changed

+654
-10937
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- image: 'ezsystems/php:7.4'
1111
steps:
1212
- checkout
13-
- run: 'composer install --dev'
13+
- run: 'COMPOSER_MEMORY_LIMIT=-1 composer install --dev'
1414
- persist_to_workspace:
1515
root: '.'
1616
paths: 'vendor'
@@ -21,7 +21,7 @@ jobs:
2121
- checkout
2222
- attach_workspace:
2323
at: '.'
24-
- run: 'phpdbg -qrr vendor/bin/phpunit'
24+
- run: 'phpdbg -qrr -d memory_limit=4G vendor/bin/phpunit'
2525
- store_test_results:
2626
path: 'build'
2727
php-cs-fixer:
@@ -31,7 +31,8 @@ jobs:
3131
- checkout
3232
- attach_workspace:
3333
at: '.'
34-
- run: 'vendor/bin/php-cs-fixer fix --diff --dry-run .'
34+
- run: 'vendor/bin/php-cs-fixer fix --diff --dry-run src'
35+
- run: 'vendor/bin/php-cs-fixer fix --diff --dry-run tests'
3536
psalm:
3637
docker:
3738
- image: 'ezsystems/php:7.4'

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.idea
22
build
33
vendor
4+
var
45
.php-cs-fixer.cache
56
.phpunit.result.cache
7+
composer.lock

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
"Elbformat\\FieldHelperBundle\\Tests\\": "tests/"
2525
}
2626
},
27+
"require": {
28+
"php": ">=7.4",
29+
"ibexa/oss": "^3.3"
30+
},
2731
"require-dev": {
28-
"phpunit/phpunit": "^8.5",
2932
"friendsofphp/php-cs-fixer": "^3.3",
33+
"phpunit/phpunit": "^8.5",
3034
"vimeo/psalm": "^4.13"
31-
},
32-
"require": {
33-
"ezsystems/ezplatform-kernel": "^1.3",
34-
"php": ">=7.4"
3535
}
3636
}

0 commit comments

Comments
 (0)