create-prisma-php-app 3.1.18 → 3.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +14 -6
- package/dist/src/Lib/MainLayout.php +2 -2
- package/dist/src/Lib/PHPX/TemplateCompiler.php +15 -2
- package/package.json +1 -1
- package/vendor/autoload.php +25 -25
- package/vendor/composer/ClassLoader.php +579 -579
- package/vendor/composer/InstalledVersions.php +359 -359
- package/vendor/composer/LICENSE +21 -21
- package/vendor/composer/autoload_classmap.php +10 -10
- package/vendor/composer/autoload_namespaces.php +9 -9
- package/vendor/composer/autoload_real.php +38 -38
- package/vendor/composer/installed.json +825 -825
- package/vendor/composer/installed.php +132 -132
package/vendor/composer/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
Copyright (c) Nils Adermann, Jordi Boggiano
|
|
3
|
-
|
|
4
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
6
|
-
in the Software without restriction, including without limitation the rights
|
|
7
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
-
copies of the Software, and to permit persons to whom the Software is furnished
|
|
9
|
-
to do so, subject to the following conditions:
|
|
10
|
-
|
|
11
|
-
The above copyright notice and this permission notice shall be included in all
|
|
12
|
-
copies or substantial portions of the Software.
|
|
13
|
-
|
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
20
|
-
THE SOFTWARE.
|
|
21
|
-
|
|
1
|
+
|
|
2
|
+
Copyright (c) Nils Adermann, Jordi Boggiano
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6
|
+
in the Software without restriction, including without limitation the rights
|
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is furnished
|
|
9
|
+
to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
20
|
+
THE SOFTWARE.
|
|
21
|
+
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
// autoload_classmap.php @generated by Composer
|
|
4
|
-
|
|
5
|
-
$vendorDir = dirname(__DIR__);
|
|
6
|
-
$baseDir = dirname($vendorDir);
|
|
7
|
-
|
|
8
|
-
return array(
|
|
9
|
-
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
|
10
|
-
);
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
// autoload_classmap.php @generated by Composer
|
|
4
|
+
|
|
5
|
+
$vendorDir = dirname(__DIR__);
|
|
6
|
+
$baseDir = dirname($vendorDir);
|
|
7
|
+
|
|
8
|
+
return array(
|
|
9
|
+
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
|
10
|
+
);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
// autoload_namespaces.php @generated by Composer
|
|
4
|
-
|
|
5
|
-
$vendorDir = dirname(__DIR__);
|
|
6
|
-
$baseDir = dirname($vendorDir);
|
|
7
|
-
|
|
8
|
-
return array(
|
|
9
|
-
);
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
// autoload_namespaces.php @generated by Composer
|
|
4
|
+
|
|
5
|
+
$vendorDir = dirname(__DIR__);
|
|
6
|
+
$baseDir = dirname($vendorDir);
|
|
7
|
+
|
|
8
|
+
return array(
|
|
9
|
+
);
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
<?php
|
|
2
|
-
|
|
3
|
-
// autoload_real.php @generated by Composer
|
|
4
|
-
|
|
5
|
-
class ComposerAutoloaderInit47138f7a82a187607bb66e41f7465a9c
|
|
6
|
-
{
|
|
7
|
-
private static $loader;
|
|
8
|
-
|
|
9
|
-
public static function loadClassLoader($class)
|
|
10
|
-
{
|
|
11
|
-
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
12
|
-
require __DIR__ . '/ClassLoader.php';
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* @return \Composer\Autoload\ClassLoader
|
|
18
|
-
*/
|
|
19
|
-
public static function getLoader()
|
|
20
|
-
{
|
|
21
|
-
if (null !== self::$loader) {
|
|
22
|
-
return self::$loader;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
require __DIR__ . '/platform_check.php';
|
|
26
|
-
|
|
27
|
-
spl_autoload_register(array('ComposerAutoloaderInit47138f7a82a187607bb66e41f7465a9c', 'loadClassLoader'), true, true);
|
|
28
|
-
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
|
29
|
-
spl_autoload_unregister(array('ComposerAutoloaderInit47138f7a82a187607bb66e41f7465a9c', 'loadClassLoader'));
|
|
30
|
-
|
|
31
|
-
require __DIR__ . '/autoload_static.php';
|
|
32
|
-
call_user_func(\Composer\Autoload\ComposerStaticInit47138f7a82a187607bb66e41f7465a9c::getInitializer($loader));
|
|
33
|
-
|
|
34
|
-
$loader->register(true);
|
|
35
|
-
|
|
36
|
-
return $loader;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
<?php
|
|
2
|
+
|
|
3
|
+
// autoload_real.php @generated by Composer
|
|
4
|
+
|
|
5
|
+
class ComposerAutoloaderInit47138f7a82a187607bb66e41f7465a9c
|
|
6
|
+
{
|
|
7
|
+
private static $loader;
|
|
8
|
+
|
|
9
|
+
public static function loadClassLoader($class)
|
|
10
|
+
{
|
|
11
|
+
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
12
|
+
require __DIR__ . '/ClassLoader.php';
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @return \Composer\Autoload\ClassLoader
|
|
18
|
+
*/
|
|
19
|
+
public static function getLoader()
|
|
20
|
+
{
|
|
21
|
+
if (null !== self::$loader) {
|
|
22
|
+
return self::$loader;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
require __DIR__ . '/platform_check.php';
|
|
26
|
+
|
|
27
|
+
spl_autoload_register(array('ComposerAutoloaderInit47138f7a82a187607bb66e41f7465a9c', 'loadClassLoader'), true, true);
|
|
28
|
+
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
|
29
|
+
spl_autoload_unregister(array('ComposerAutoloaderInit47138f7a82a187607bb66e41f7465a9c', 'loadClassLoader'));
|
|
30
|
+
|
|
31
|
+
require __DIR__ . '/autoload_static.php';
|
|
32
|
+
call_user_func(\Composer\Autoload\ComposerStaticInit47138f7a82a187607bb66e41f7465a9c::getInitializer($loader));
|
|
33
|
+
|
|
34
|
+
$loader->register(true);
|
|
35
|
+
|
|
36
|
+
return $loader;
|
|
37
|
+
}
|
|
38
|
+
}
|