Parcourir la source

create first entities

olinox14 il y a 2 ans
Parent
commit
970e654df7
3 fichiers modifiés avec 4 ajouts et 25 suppressions
  1. 3 0
      api/composer.json
  2. 1 0
      api/config/bundles.php
  3. 0 25
      app/pages/inspire.vue

+ 3 - 0
api/composer.json

@@ -76,5 +76,8 @@
             "allow-contrib": false,
             "require": "6.3.*"
         }
+    },
+    "require-dev": {
+        "symfony/maker-bundle": "^1.51"
     }
 }

+ 1 - 0
api/config/bundles.php

@@ -8,4 +8,5 @@ return [
     Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
     Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
     ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
+    Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
 ];

+ 0 - 25
app/pages/inspire.vue

@@ -1,25 +0,0 @@
-<template>
-  <v-row>
-    <v-col class="text-center">
-      <img
-        src="/v.png"
-        alt="Vuetify.js"
-        class="mb-5"
-      >
-      <blockquote class="blockquote">
-        &#8220;First, solve the problem. Then, write the code.&#8221;
-        <footer>
-          <small>
-            <em>&mdash;John Johnson</em>
-          </small>
-        </footer>
-      </blockquote>
-    </v-col>
-  </v-row>
-</template>
-
-<script>
-export default {
-  name: 'InspirePage'
-}
-</script>