-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·112 lines (111 loc) · 4.95 KB
/
composer.json
File metadata and controls
executable file
·112 lines (111 loc) · 4.95 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "libre-informatique/lisem-project",
"license": "GPL-3.0",
"type": "project",
"description": "LISem is an ERP specialized for seeds producers and craftsmen.",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": ["app/VendorOverride/", "app/AppKernel.php", "app/AppCache.php"]
},
"require": {
"php": ">=7.1",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-pgsql": "*",
"ext-curl": "*",
"ext-intl": "*",
"ext-mbstring" : "*",
"ext-zip": "*",
"blast-project/base-entities-bundle": "self.version",
"blast-project/core-bundle": "self.version",
"blast-project/doctrine-pgsql-bundle": "self.version",
"blast-project/doctrine-session-bundle": "self.version",
"blast-project/outer-extension-bundle": "self.version",
"blast-project/utils-bundle": "self.version",
"doctrine/dbal": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"doctrine/orm": "^2.5",
"incenteev/composer-parameter-handler": "^2.1",
"jms/security-extra-bundle": "^1.6",
"jms/serializer-bundle": "^2.0",
"knplabs/knp-snappy-bundle": "^1.0",
"lexik/maintenance-bundle": "^2.1",
"libre-informatique/crm-bundle": "self.version",
"libre-informatique/decorator-bundle": "self.version",
"libre-informatique/ecommerce-bundle": "self.version",
"libre-informatique/email-bundle": "self.version",
"libre-informatique/email-crm-bundle": "self.version",
"libre-informatique/media-bundle": "self.version",
"libre-informatique/seed-batch-bundle": "self.version",
"libre-informatique/sonata-sylius-user-bundle": "self.version",
"libre-informatique/varieties-bundle": "self.version",
"libre-informatique/sylius-paybox-bundle": "self.version",
"blast-project/resource-bundle": "self.version",
"sil-project/stock-bundle": "self.version",
"sil-project/manufacturing-bundle": "self.version",
"nelmio/api-doc-bundle": "^2.13",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"sensio/generator-bundle": "^3.0",
"sonata-project/admin-bundle": "^3.4",
"sonata-project/core-bundle": "^3.0",
"sonata-project/datagrid-bundle": "^2.2",
"sonata-project/doctrine-orm-admin-bundle": "^3.0",
"sonata-project/easy-extends-bundle": "^2.1",
"sonata-project/intl-bundle": "^2.2",
"sylius/sylius": "^1.0",
"symfony/assetic-bundle": "^2.8",
"symfony/monolog-bundle": "^3.0.2",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/symfony": "^3.3",
"trappar/alice-generator-bundle": "^1.1"
},
"require-dev": {
"alexandresalome/doctrine-extra-bundle": "^0.3.0",
"nelmio/alice": "^2.2",
"codeception/codeception": "^2.3",
"lexik/translation-bundle": "^4.0",
"phpunit/phpunit": "^6.4"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Librinfo\\EcommerceBundle\\Tools\\ComposerScriptHandler::installSyliusThemeAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"Blast\\CoreBundle\\Tools\\Patches\\Patcher::applyPatches"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Librinfo\\EcommerceBundle\\Tools\\ComposerScriptHandler::installSyliusThemeAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"Blast\\CoreBundle\\Tools\\Patches\\Patcher::applyPatches"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
},
"version": "dev-wip-lisem"
}