Update Composer, update everything
This commit is contained in:
parent
ea3e94409f
commit
dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/Bar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/Bar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\Namespaced;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/Baz.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/Baz.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\Namespaced;
|
||||
|
||||
class Baz
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/Foo.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/Foo.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\Namespaced;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/FooBar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/Namespaced/FooBar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\Namespaced;
|
||||
|
||||
class FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Apc_Pearlike_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Baz.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Baz.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Apc_Pearlike_Baz
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/Pearlike/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Apc_Pearlike_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ApcPrefixCollision_A_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/ApcPrefixCollision/A/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ApcPrefixCollision_A_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Bar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Bar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\NamespaceCollision\A;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Foo.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/alpha/Apc/NamespaceCollision/A/Foo.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\NamespaceCollision\A;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ApcPrefixCollision_A_B_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/ApcPrefixCollision/A/B/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class ApcPrefixCollision_A_B_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Bar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Bar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\NamespaceCollision\A\B;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Foo.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/beta/Apc/NamespaceCollision/A/B/Foo.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\NamespaceCollision\A\B;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/fallback/Apc/Pearlike/FooBar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Apc/fallback/Apc/Pearlike/FooBar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Apc_Pearlike_FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/fallback/Namespaced/FooBar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Apc/fallback/Namespaced/FooBar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Apc\Namespaced;
|
||||
|
||||
class FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/A.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/A.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
class A extends B
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/ATrait.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/ATrait.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
trait ATrait
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/B.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/B.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
class B implements CInterface
|
||||
{
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/BTrait.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/BTrait.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
trait BTrait
|
||||
{
|
||||
use ATrait;
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/CInterface.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/CInterface.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
interface CInterface extends GInterface
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/CTrait.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/CTrait.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
trait CTrait
|
||||
{
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/D.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/D.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
class D extends A
|
||||
{
|
||||
use BTrait;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/E.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/E.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
class E extends D
|
||||
{
|
||||
use CTrait;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/F.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/F.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
class F
|
||||
{
|
||||
use CTrait;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/G.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/G.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
class G
|
||||
{
|
||||
use CTrait;
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/GInterface.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/ClassesWithParents/GInterface.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ClassesWithParents;
|
||||
|
||||
interface GInterface
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/DeclaredClass.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/DeclaredClass.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Symfony\Component\ClassLoader\Tests\Fixtures;
|
||||
|
||||
class DeclaredClass implements DeclaredInterface
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/DeclaredInterface.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/DeclaredInterface.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Symfony\Component\ClassLoader\Tests\Fixtures;
|
||||
|
||||
interface DeclaredInterface
|
||||
{
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/Bar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/Bar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/Baz.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/Baz.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class Baz
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/Foo.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/Foo.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
37
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithComments.php
vendored
Normal file
37
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithComments.php
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class WithComments
|
||||
{
|
||||
/** @Boolean */
|
||||
public static $loaded = true;
|
||||
}
|
||||
|
||||
$string = 'string should not be modified {$string}';
|
||||
|
||||
$heredoc = (<<<HD
|
||||
|
||||
|
||||
Heredoc should not be modified {$string}
|
||||
|
||||
|
||||
HD
|
||||
);
|
||||
|
||||
$nowdoc = <<<'ND'
|
||||
|
||||
|
||||
Nowdoc should not be modified {$string}
|
||||
|
||||
|
||||
ND;
|
15
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithDirMagic.php
vendored
Normal file
15
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithDirMagic.php
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* foo
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class WithDirMagic
|
||||
{
|
||||
public function getDir()
|
||||
{
|
||||
return __DIR__;
|
||||
}
|
||||
}
|
15
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithFileMagic.php
vendored
Normal file
15
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithFileMagic.php
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* foo
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class WithFileMagic
|
||||
{
|
||||
public function getFile()
|
||||
{
|
||||
return __FILE__;
|
||||
}
|
||||
}
|
18
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithHaltCompiler.php
vendored
Normal file
18
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithHaltCompiler.php
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* foo
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class WithHaltCompiler
|
||||
{
|
||||
}
|
||||
|
||||
// the end of the script execution
|
||||
__halt_compiler(); data
|
||||
data
|
||||
data
|
||||
data
|
||||
...
|
13
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithStrictTypes.php
vendored
Normal file
13
vendor/symfony/class-loader/Tests/Fixtures/Namespaced/WithStrictTypes.php
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* foo
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class WithStrictTypes
|
||||
{
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Bar.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Bar.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Namespaced2;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Baz.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Baz.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Namespaced2;
|
||||
|
||||
class Baz
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Foo.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/Namespaced2/Foo.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Namespaced2;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Baz.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Baz.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike_Baz
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
16
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/WithComments.php
vendored
Normal file
16
vendor/symfony/class-loader/Tests/Fixtures/Pearlike/WithComments.php
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
class Pearlike_WithComments
|
||||
{
|
||||
/** @Boolean */
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike2/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike2/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike2_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike2/Baz.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike2/Baz.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike2_Baz
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike2/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/Pearlike2/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike2_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/WarmedClass.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/WarmedClass.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Symfony\Component\ClassLoader\Tests\Fixtures;
|
||||
|
||||
class WarmedClass extends DeclaredClass implements WarmedInterface
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/WarmedInterface.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/WarmedInterface.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Symfony\Component\ClassLoader\Tests\Fixtures;
|
||||
|
||||
interface WarmedInterface
|
||||
{
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/A/Bar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/A/Bar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace NamespaceCollision\A;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/A/Foo.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/A/Foo.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace NamespaceCollision\A;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/C/Bar.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/C/Bar.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace NamespaceCollision\C;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/C/Foo.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/alpha/NamespaceCollision/C/Foo.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace NamespaceCollision\C;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/A/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/A/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_A_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/A/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/A/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_A_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/C/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/C/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_C_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/C/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/alpha/PrefixCollision/C/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_C_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/A/B/Bar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/A/B/Bar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace NamespaceCollision\A\B;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/A/B/Foo.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/A/B/Foo.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace NamespaceCollision\A\B;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/C/B/Bar.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/C/B/Bar.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace NamespaceCollision\C\B;
|
||||
|
||||
class Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/C/B/Foo.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/beta/NamespaceCollision/C/B/Foo.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace NamespaceCollision\C\B;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/A/B/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/A/B/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_A_B_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/A/B/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/A/B/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_A_B_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/C/B/Bar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/C/B/Bar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_C_B_Bar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/C/B/Foo.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/beta/PrefixCollision/C/B/Foo.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class PrefixCollision_C_B_Foo
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
16
vendor/symfony/class-loader/Tests/Fixtures/classmap/SomeClass.php
vendored
Normal file
16
vendor/symfony/class-loader/Tests/Fixtures/classmap/SomeClass.php
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace ClassMap;
|
||||
|
||||
class SomeClass extends SomeParent implements SomeInterface
|
||||
{
|
||||
}
|
16
vendor/symfony/class-loader/Tests/Fixtures/classmap/SomeInterface.php
vendored
Normal file
16
vendor/symfony/class-loader/Tests/Fixtures/classmap/SomeInterface.php
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace ClassMap;
|
||||
|
||||
interface SomeInterface
|
||||
{
|
||||
}
|
16
vendor/symfony/class-loader/Tests/Fixtures/classmap/SomeParent.php
vendored
Normal file
16
vendor/symfony/class-loader/Tests/Fixtures/classmap/SomeParent.php
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace ClassMap;
|
||||
|
||||
abstract class SomeParent
|
||||
{
|
||||
}
|
25
vendor/symfony/class-loader/Tests/Fixtures/classmap/multipleNs.php
vendored
Normal file
25
vendor/symfony/class-loader/Tests/Fixtures/classmap/multipleNs.php
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace {
|
||||
class A
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
namespace Alpha {
|
||||
class A
|
||||
{
|
||||
}
|
||||
class B
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
namespace Beta {
|
||||
class A
|
||||
{
|
||||
}
|
||||
class B
|
||||
{
|
||||
}
|
||||
}
|
3
vendor/symfony/class-loader/Tests/Fixtures/classmap/notAClass.php
vendored
Normal file
3
vendor/symfony/class-loader/Tests/Fixtures/classmap/notAClass.php
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
|
||||
$a = new stdClass();
|
1
vendor/symfony/class-loader/Tests/Fixtures/classmap/notPhpFile.md
vendored
Normal file
1
vendor/symfony/class-loader/Tests/Fixtures/classmap/notPhpFile.md
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
This file should be skipped.
|
19
vendor/symfony/class-loader/Tests/Fixtures/classmap/sameNsMultipleClasses.php
vendored
Normal file
19
vendor/symfony/class-loader/Tests/Fixtures/classmap/sameNsMultipleClasses.php
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Foo\Bar;
|
||||
|
||||
class A
|
||||
{
|
||||
}
|
||||
class B
|
||||
{
|
||||
}
|
37
vendor/symfony/class-loader/Tests/Fixtures/deps/traits.php
vendored
Normal file
37
vendor/symfony/class-loader/Tests/Fixtures/deps/traits.php
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
|
||||
trait TD
|
||||
{
|
||||
}
|
||||
|
||||
trait TZ
|
||||
{
|
||||
use TD;
|
||||
}
|
||||
|
||||
trait TC
|
||||
{
|
||||
use TD;
|
||||
}
|
||||
|
||||
trait TB
|
||||
{
|
||||
use TC;
|
||||
}
|
||||
|
||||
trait TA
|
||||
{
|
||||
use TB;
|
||||
}
|
||||
|
||||
class CTFoo
|
||||
{
|
||||
use TA;
|
||||
use TZ;
|
||||
}
|
||||
|
||||
class CTBar
|
||||
{
|
||||
use TZ;
|
||||
use TA;
|
||||
}
|
17
vendor/symfony/class-loader/Tests/Fixtures/fallback/Namespaced/FooBar.php
vendored
Normal file
17
vendor/symfony/class-loader/Tests/Fixtures/fallback/Namespaced/FooBar.php
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Namespaced;
|
||||
|
||||
class FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
8
vendor/symfony/class-loader/Tests/Fixtures/fallback/Namespaced2/FooBar.php
vendored
Normal file
8
vendor/symfony/class-loader/Tests/Fixtures/fallback/Namespaced2/FooBar.php
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Namespaced2;
|
||||
|
||||
class FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/fallback/Pearlike/FooBar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/fallback/Pearlike/FooBar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike_FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
6
vendor/symfony/class-loader/Tests/Fixtures/fallback/Pearlike2/FooBar.php
vendored
Normal file
6
vendor/symfony/class-loader/Tests/Fixtures/fallback/Pearlike2/FooBar.php
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Pearlike2_FooBar
|
||||
{
|
||||
public static $loaded = true;
|
||||
}
|
5
vendor/symfony/class-loader/Tests/Fixtures/includepath/Foo.php
vendored
Normal file
5
vendor/symfony/class-loader/Tests/Fixtures/includepath/Foo.php
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
class Foo
|
||||
{
|
||||
}
|
32
vendor/symfony/class-loader/Tests/Fixtures/php5.4/traits.php
vendored
Normal file
32
vendor/symfony/class-loader/Tests/Fixtures/php5.4/traits.php
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
namespace {
|
||||
trait TFoo
|
||||
{
|
||||
}
|
||||
|
||||
class CFoo
|
||||
{
|
||||
use TFoo;
|
||||
}
|
||||
}
|
||||
|
||||
namespace Foo {
|
||||
trait TBar
|
||||
{
|
||||
}
|
||||
|
||||
interface IBar
|
||||
{
|
||||
}
|
||||
|
||||
trait TFooBar
|
||||
{
|
||||
}
|
||||
|
||||
class CBar implements IBar
|
||||
{
|
||||
use TBar;
|
||||
use TFooBar;
|
||||
}
|
||||
}
|
11
vendor/symfony/class-loader/Tests/Fixtures/php5.5/class_cons.php
vendored
Normal file
11
vendor/symfony/class-loader/Tests/Fixtures/php5.5/class_cons.php
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
namespace ClassCons;
|
||||
|
||||
class Foo
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
\Foo\TBar/* foo */::class;
|
||||
}
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Class_With_Underscores.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Class_With_Underscores.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Acme\DemoLib;
|
||||
|
||||
class Class_With_Underscores
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Foo.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Foo.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Acme\DemoLib;
|
||||
|
||||
class Foo
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Class_With_Underscores.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Class_With_Underscores.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Acme\DemoLib\Lets\Go\Deeper;
|
||||
|
||||
class Class_With_Underscores
|
||||
{
|
||||
}
|
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Foo.php
vendored
Normal file
7
vendor/symfony/class-loader/Tests/Fixtures/psr-4/Lets/Go/Deeper/Foo.php
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace Acme\DemoLib\Lets\Go\Deeper;
|
||||
|
||||
class Foo
|
||||
{
|
||||
}
|
Reference in a new issue