Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,63 @@
1
+{
2
+    "type": "project",
3
+    "license": "proprietary",
4
+    "require": {
5
+        "php": "^7.1.3",
6
+        "ext-ctype": "*",
7
+        "ext-iconv": "*",
8
+        "sensio/framework-extra-bundle": "^5.4",
9
+        "symfony/console": "4.3.*",
10
+        "symfony/dotenv": "4.3.*",
11
+        "symfony/flex": "^1.3.1",
12
+        "symfony/framework-bundle": "4.3.*",
13
+        "symfony/twig-bundle": "4.3.*",
14
+        "symfony/yaml": "4.3.*"
15
+    },
16
+    "require-dev": {
17
+    },
18
+    "config": {
19
+        "preferred-install": {
20
+            "*": "dist"
21
+        },
22
+        "sort-packages": true
23
+    },
24
+    "autoload": {
25
+        "psr-4": {
26
+            "App\\": "src/"
27
+        }
28
+    },
29
+    "autoload-dev": {
30
+        "psr-4": {
31
+            "App\\Tests\\": "tests/"
32
+        }
33
+    },
34
+    "replace": {
35
+        "paragonie/random_compat": "2.*",
36
+        "symfony/polyfill-ctype": "*",
37
+        "symfony/polyfill-iconv": "*",
38
+        "symfony/polyfill-php71": "*",
39
+        "symfony/polyfill-php70": "*",
40
+        "symfony/polyfill-php56": "*"
41
+    },
42
+    "scripts": {
43
+        "auto-scripts": {
44
+            "cache:clear": "symfony-cmd",
45
+            "assets:install %PUBLIC_DIR%": "symfony-cmd"
46
+        },
47
+        "post-install-cmd": [
48
+            "@auto-scripts"
49
+        ],
50
+        "post-update-cmd": [
51
+            "@auto-scripts"
52
+        ]
53
+    },
54
+    "conflict": {
55
+        "symfony/symfony": "*"
56
+    },
57
+    "extra": {
58
+        "symfony": {
59
+            "allow-contrib": false,
60
+            "require": "4.3.*"
61
+        }
62
+    }
63
+}