Lines Matching +full:- +full:composer +full:-
1 composer/ca-bundle
7 Originally written as part of [composer/composer](https://github.com/composer/composer),
8 now extracted and made available as a stand-alone library.
12 ------------
17 $ composer require composer/ca-bundle
22 ------------
28 -----------
30 ### `Composer\CaBundle\CaBundle`
32 - `CaBundle::getSystemCaRootBundlePath()`: Returns the system CA bundle path, or a path to the bund…
33 - `CaBundle::getBundledCaBundlePath()`: Returns the path to the bundled CA file
34 - `CaBundle::validateCaFile($filename)`: Validates a CA file using openssl_x509_parse only if it is…
35 - `CaBundle::isOpensslParseSafe()`: Test if it is safe to use the PHP function openssl_x509_parse()
36 - `CaBundle::reset()`: Resets the static caches
44 $caPathOrFile = \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath();
63 $caPathOrFile = \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath();
78 \GuzzleHttp\RequestOptions::VERIFY => \Composer\CaBundle\CaBundle::getSystemCaRootBundlePath()
83 -------
85 composer/ca-bundle is licensed under the MIT License, see the LICENSE file for details.