Skip to content

Commit

Permalink
Add vendor dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ankit Gade committed Jun 29, 2021
1 parent 941e5be commit 99ece9b
Show file tree
Hide file tree
Showing 34 changed files with 2,451 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/vendor/
.idea
node_modules/
.DS_Store
Expand Down
4 changes: 4 additions & 0 deletions vendor/pimple/pimple/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
phpunit.xml
.phpunit.result.cache
composer.lock
/vendor/
20 changes: 20 additions & 0 deletions vendor/pimple/pimple/.php_cs.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHPUnit75Migration:risky' => true,
'php_unit_dedicate_assert' => true,
'array_syntax' => ['syntax' => 'short'],
'php_unit_fqcn_annotation' => true,
'no_unreachable_default_argument_value' => false,
'braces' => ['allow_single_line_closure' => true],
'heredoc_to_nowdoc' => false,
'ordered_imports' => true,
'phpdoc_types_order' => ['null_adjustment' => 'always_last', 'sort_algorithm' => 'none'],
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'all'],
])
->setRiskyAllowed(true)
->setFinder(PhpCsFixer\Finder::create()->in(__DIR__.'/src'))
;
19 changes: 19 additions & 0 deletions vendor/pimple/pimple/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: php

env:
global:
- REPORT_EXIT_STATUS=1

php:
- 7.2
- 7.3
- 7.4
- 8.0
- nightly

before_script:
- composer self-update
- COMPOSER_ROOT_VERSION=dev-master composer install

script:
- ./vendor/bin/simple-phpunit
72 changes: 72 additions & 0 deletions vendor/pimple/pimple/CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
* 3.4.0 (2021-03-06)

* Implement version 1.1 of PSR-11

* 3.3.1 (2020-11-24)

* Add support for PHP 8

* 3.3.0 (2020-03-03)

* Drop PHP extension
* Bump min PHP version to 7.2.5

* 3.2.3 (2018-01-21)

* prefixed all function calls with \ for extra speed

* 3.2.2 (2017-07-23)

* reverted extending a protected closure throws an exception (deprecated it instead)

* 3.2.1 (2017-07-17)

* fixed PHP error

* 3.2.0 (2017-07-17)

* added a PSR-11 service locator
* added a PSR-11 wrapper
* added ServiceIterator
* fixed extending a protected closure (now throws InvalidServiceIdentifierException)

* 3.1.0 (2017-07-03)

* deprecated the C extension
* added support for PSR-11 exceptions

* 3.0.2 (2015-09-11)

* refactored the C extension
* minor non-significant changes

* 3.0.1 (2015-07-30)

* simplified some code
* fixed a segfault in the C extension

* 3.0.0 (2014-07-24)

* removed the Pimple class alias (use Pimple\Container instead)

* 2.1.1 (2014-07-24)

* fixed compiler warnings for the C extension
* fixed code when dealing with circular references

* 2.1.0 (2014-06-24)

* moved the Pimple to Pimple\Container (with a BC layer -- Pimple is now a
deprecated alias which will be removed in Pimple 3.0)
* added Pimple\ServiceProviderInterface (and Pimple::register())

* 2.0.0 (2014-02-10)

* changed extend to automatically re-assign the extended service and keep it as shared or factory
(to keep BC, extend still returns the extended service)
* changed services to be shared by default (use factory() for factory
services)

* 1.0.0

* initial version
19 changes: 19 additions & 0 deletions vendor/pimple/pimple/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2009-2020 Fabien Potencier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Loading

0 comments on commit 99ece9b

Please sign in to comment.