Skip to content

Instantly share code, notes, and snippets.

@EmanueleMinotto
Last active December 16, 2015 14:38
Show Gist options
  • Select an option

  • Save EmanueleMinotto/7f1df17741f85d7a3bd3 to your computer and use it in GitHub Desktop.

Select an option

Save EmanueleMinotto/7f1df17741f85d7a3bd3 to your computer and use it in GitHub Desktop.

Revisions

  1. EmanueleMinotto renamed this gist Dec 16, 2015. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. EmanueleMinotto renamed this gist Dec 16, 2015. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. EmanueleMinotto revised this gist Dec 16, 2015. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions acmescript
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    #!/usr/bin/env php
    <?php

    // ...
  4. EmanueleMinotto revised this gist Dec 16, 2015. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions poc
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,3 @@
    ```
    /
    Acme
    Package
    @@ -7,5 +6,4 @@
    composer.json
    .gitignore
    .gitattributes
    acmescript
    ```
    acmescript
  5. EmanueleMinotto revised this gist Dec 16, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion composer.json
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    "*Test.php"
    ],
    "psr-4": {
    "Vendor\\": "Vendor"
    "Acme\\": "Acme"
    }
    },
    "bin": [
  6. EmanueleMinotto created this gist Dec 16, 2015.
    4 changes: 4 additions & 0 deletions .gitattributes
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    /.gitattributes export-ignore
    /.gitignore export-ignore
    /phpunit.xml.dist export-ignore
    *Test.php export-ignore
    3 changes: 3 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    vendor/
    phpunit.xml
    composer.phar
    13 changes: 13 additions & 0 deletions composer.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    {
    "autoload": {
    "exclude-from-classmap": [
    "*Test.php"
    ],
    "psr-4": {
    "Vendor\\": "Vendor"
    }
    },
    "bin": [
    "acmescript"
    ]
    }
    11 changes: 11 additions & 0 deletions poc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    ```
    /
    Acme
    Package
    Library.php
    LibraryTest.php
    composer.json
    .gitignore
    .gitattributes
    acmescript
    ```