Browse Source

first commit

Maxi Schvindt 7 năm trước cách đây
commit
a69f136990
3 tập tin đã thay đổi với 27 bổ sung0 xóa
  1. 8 0
      .drone.yml
  2. 9 0
      NasBundle.php
  3. 10 0
      composer.json

+ 8 - 0
.drone.yml

@@ -0,0 +1,8 @@
+pipeline:
+  build:
+    image: docker.infra.flowdat.com/fd3/sf-php:latest
+    commands:
+      - chmod 0600 keys/*
+      - eval $(ssh-agent); ssh-add keys/gogs.drone.id_rsa
+      - git push --all ssh://git@gogs.infra.flowdat.com:222/VendorSoftwareFlowdat3/NasBundle.git 
+ 

+ 9 - 0
NasBundle.php

@@ -0,0 +1,9 @@
+<?php
+
+namespace NasBundle;
+
+use Symfony\Component\HttpKernel\Bundle\Bundle;
+
+class NasBundle extends Bundle
+{
+}

+ 10 - 0
composer.json

@@ -0,0 +1,10 @@
+{
+    "name": "ik/stats/nas-bundle",
+    "description": "Flowdat 3 NAS Bundle",
+    "keywords": ["Flowdat 3", "NAS"],
+    "autoload": {
+        "psr-4": { "NasBundle\\": "" }
+    },
+    "version": "1.0",
+    "minimum-stability": "stable"
+}