-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.96 KB
/
composer.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "lephare/import-bundle",
"type": "symfony-bundle",
"description": "Provide Symfony integration for lephare/import",
"license": "MIT",
"authors": [
{
"name": "Le Phare",
"homepage": "https://www.lephare.com"
}
],
"require": {
"php": "^7.4|^8.0",
"lephare/import": "^2.0",
"monolog/monolog": "^2.0|^3.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/lock": "^5.4|^6.0|^7.0",
"symfony/yaml": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"LePhare\\ImportBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"doctrine/collections": "^1.6|^2.0",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.3",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/event-dispatcher": "^5.4|^6.0|^7.0",
"symfony/mailer": "^5.4|^6.0|^7.0",
"symfony/maker-bundle": "^1.36",
"symfony/twig-bridge": "^5.4|^6.0|^7.0"
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse --no-progress",
"lint": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run",
"lint:ci": "@lint:fix --using-cache=no --dry-run",
"lint:fix": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"test:ci": "@test --colors=never --coverage-text",
"test": "./vendor/bin/phpunit"
},
"suggest": {
"symfony/mailer": "to enable support for email reports",
"symfony/twig-bridge": "to enable support for templated emails reports"
},
"minimum-stability": "dev",
"prefer-stable": true
}