Skip to content

Commit e9b0cae

Browse files
Merge pull request #2 from basilicom/feature/unit-tests
Feature/unit tests
2 parents f04c5ef + 200d12c commit e9b0cae

File tree

10 files changed

+171
-13635
lines changed

10 files changed

+171
-13635
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33

44
# webpack
55
vendor
6+
.phpunit.*

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@
1111
],
1212
"autoload": {
1313
"psr-4": {
14-
"Basilicom\\AdvancedCustomLayoutBundle\\": "src/"
14+
"Basilicom\\AdvancedCustomLayoutBundle\\": "src/",
15+
"Tests\\Unit\\": "tests/unit"
1516
}
1617
},
1718
"require": {
1819
"php": ">=8.0",
19-
"pimcore/pimcore": ">=10"
20+
"pimcore/pimcore": ">=10",
21+
"phpoffice/phpspreadsheet": "^1.28"
22+
},
23+
"require-dev": {
24+
"phpunit/phpunit": "^9.5"
2025
}
2126
}

0 commit comments

Comments
 (0)