-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·34 lines (34 loc) · 1000 Bytes
/
composer.json
File metadata and controls
executable file
·34 lines (34 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "polishsymfonycommunity/symfony-mocker-container",
"description": "Provides base Symfony dependency injection container enabling service mocking.",
"keywords": ["behat", "mockery", "mock", "bdd", "tdd", "test"],
"homepage": "http://symfonylab.pl",
"license": "MIT",
"authors": [
{
"name": "Jakub Zalas",
"email": "jakub@zalas.pl",
"homepage": "http://www.zalas.eu"
},
{
"name": "Polish Symfony Community",
"homepage": "http://symfonylab.pl"
}
],
"require": {
"php": "^8.0",
"symfony/dependency-injection": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"mockery/mockery": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^8.4"
},
"autoload": {
"psr-4": { "PSS\\SymfonyMockerContainer\\": "src/" }
},
"extra": {
"symfony": {
"require": "7.0.*"
}
}
}