-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
66 lines (66 loc) · 1.9 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
64
65
66
{
"name": "blast-project/doctrine-session-bundle",
"type": "symfony-bundle",
"description": "Store your Symfony sessions in database through doctrine",
"require": {
"php": ">=7.1",
"symfony/symfony": ">=3.2",
"doctrine/doctrine-bundle": ">=1.6"
},
"require-dev": {
"symfony/phpunit-bridge": ">=3.2",
"sonata-project/doctrine-orm-admin-bundle": ">=3.1",
"blast-project/core-bundle": "self.version",
"blast-project/tests-bundle": "self.version",
"symfony/console": ">=3.2",
"phpunit/phpunit": "^6.4"
},
"scripts": {
"test": [
"phpunit"
],
"test-full": [
"@composer install",
"@test-mysql",
"@test-sqlite",
"@test-postgresql"
],
"test-mysql": [
"php -r \"copy('tests/Resources/App/config/config_test_mysql.yml', 'tests/Resources/App/config/config_test.yml');\"",
"@test"
],
"test-postgresql": [
"php -r \"copy('tests/Resources/App/config/config_test_postgresql.yml', 'tests/Resources/App/config/config_test.yml');\"",
"@test"
],
"test-sqlite": [
"php -r \"copy('tests/Resources/App/config/config_test_sqlite.yml', 'tests/Resources/App/config/config_test.yml');\"",
"@test"
]
},
"license": "LGPL-3.0",
"keywords": [
"symfony",
"doctrine",
"blast"
],
"homepage": "https://github.com/blast-project/BaseEntitiesBundle",
"authors": [
{
"name": "Romain SANCHEZ",
"email": "[email protected]"
},
{
"name": "Libre Informatique",
"homepage": "http://www.libre-informatique.fr/"
}
],
"autoload": {
"psr-4": {
"Blast\\DoctrineSessionBundle\\": "src/"
}
},
"suggest": {
"blast-project/core-bundle": "Define sonata admins in yml and more"
}
}