We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd343a commit 42916faCopy full SHA for 42916fa
composer.json
@@ -30,5 +30,8 @@
30
"config": {
31
"optimize-autoloader": true,
32
"sort-packages": true
33
- }
+ },
34
+ "bin": [
35
+ "php-datagen"
36
+ ]
37
}
php-datagen
@@ -0,0 +1,13 @@
1
+#!/usr/bin/env php
2
+<?php
3
+
4
+if (file_exists(__DIR__.'/../../autoload.php')) {
5
+ require __DIR__.'/../../autoload.php';
6
+} else {
7
+ require __DIR__.'/vendor/autoload.php';
8
+}
9
10
+$app = new Symfony\Component\Console\Application('PHP-DataGen', '0.2-alpha');
11
+ // $app->add(new PHPDataGen\Commands\);
12
13
+$app->run();
0 commit comments