├── .gitignore ├── README.md ├── assets ├── root-files │ ├── Authentication │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Barcode │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── CONTRIBUTING.md │ ├── Cache │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Captcha │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Code │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Config │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Console │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Crypt │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Db │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Debug │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Di │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Dom │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Escaper │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── EventManager │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Feed │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── File │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Filter │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Form │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Http │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── I18n │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── InputFilter │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Json │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── LICENSE.txt │ ├── Ldap │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Loader │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Log │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Mail │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Math │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Memory │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Mime │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── ModuleManager │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Mvc │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Navigation │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Paginator │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Permissions-Acl │ │ ├── README.md │ │ └── php_cs │ ├── Permissions-Rbac │ │ ├── README.md │ │ └── php_cs │ ├── ProgressBar │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── README-COMPONENT.md │ ├── README.md │ ├── Serializer │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Server │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── ServiceManager │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Session │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Soap │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Stdlib │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Tag │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Test │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Text │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Uri │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Validator │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── Version │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── View │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── XmlRpc │ │ ├── README.md │ │ ├── php_cs │ │ ├── phpunit.xml.dist │ │ └── phpunit.xml.travis │ ├── coveralls.yml │ ├── gitattributes │ ├── gitignore │ ├── php_cs │ ├── php_cs_zf2 │ ├── phpunit.xml.dist │ ├── phpunit.xml.travis │ └── travis.yml └── test-files │ ├── README.md │ └── bootstrap.php └── bin ├── composer-rewriter.php ├── functions.php ├── normalize.php ├── split-component.sh ├── split.sh └── tree-filter.php /.gitignore: -------------------------------------------------------------------------------- 1 | zf2-migrate/ 2 | tmp/ 3 | TestConfiguration.php.* 4 | -------------------------------------------------------------------------------- /assets/root-files/Authentication/README.md: -------------------------------------------------------------------------------- 1 | # zend-authentication 2 | 3 | The `Zend\Authentication` component provides an API for authentication and 4 | includes concrete authentication adapters for common use case scenarios. 5 | 6 | 7 | - File issues at https://github.com/zendframework/zend-authentication/issues 8 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-authentication 9 | -------------------------------------------------------------------------------- /assets/root-files/Authentication/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Barcode/README.md: -------------------------------------------------------------------------------- 1 | # zend-barcode 2 | 3 | `Zend\Barcode` provides a generic way to generate barcodes. The `Zend\Barcode` 4 | component is divided into two subcomponents: barcode objects and renderers. 5 | Objects allow you to create barcodes independently of the renderer. Renderer 6 | allow you to draw barcodes based on the support required. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-barcode/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-barcode 11 | -------------------------------------------------------------------------------- /assets/root-files/Barcode/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Barcode/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 36 | 37 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /assets/root-files/Barcode/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /assets/root-files/Cache/README.md: -------------------------------------------------------------------------------- 1 | # zend-cache 2 | 3 | `Zend\Cache` provides a general cache system for PHP. The `Zend\Cache` component 4 | is able to cache different patterns (class, object, output, etc) using different 5 | storage adapters (DB, File, Memcache, etc). 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-cache/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-cache 10 | -------------------------------------------------------------------------------- /assets/root-files/Cache/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Captcha/README.md: -------------------------------------------------------------------------------- 1 | # zend-captcha 2 | 3 | `Zend\Captcha` component is able to manage “Completely Automated Public Turing 4 | test to tell Computers and Humans Apart” (CAPTCHA); it is used as a challenge-response 5 | to ensure that the individual submitting information is a human and not an 6 | automated process. Typically, a captcha is used with form submissions where 7 | authenticated users are not necessary, but you want to prevent spam submissions. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-captcha/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-captcha 12 | -------------------------------------------------------------------------------- /assets/root-files/Captcha/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Captcha/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 36 | 37 | 39 | 40 | 41 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /assets/root-files/Code/README.md: -------------------------------------------------------------------------------- 1 | # zend-code 2 | 3 | `Zend\Code\Generator` provides facilities to generate arbitrary code using an 4 | object-oriented interface, both to create new code as well as to update existing 5 | code. While the current implementation is limited to generating PHP code, you 6 | can easily extend the base class in order to provide code generation for other 7 | tasks: JavaScript, configuration files, apache vhosts, etc. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-code/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-code 12 | -------------------------------------------------------------------------------- /assets/root-files/Code/php_cs: -------------------------------------------------------------------------------- 1 | notPath('Generator/TestAsset') 4 | ->notPath('Reflection/FunctionReflectionTest.php') 5 | ->notPath('Reflection/MethodReflectionTest.php') 6 | ->notPath('Reflection/TestAsset') 7 | ->notPath('TestAsset') 8 | ->notPath('_files') 9 | ->filter(function (SplFileInfo $file) { 10 | if (strstr($file->getPath(), 'compatibility')) { 11 | return false; 12 | } 13 | }); 14 | $config = Symfony\CS\Config\Config::create(); 15 | $config->level(null); 16 | $config->fixers( 17 | array( 18 | 'braces', 19 | 'duplicate_semicolon', 20 | 'elseif', 21 | 'empty_return', 22 | 'encoding', 23 | 'eof_ending', 24 | 'function_call_space', 25 | 'function_declaration', 26 | 'indentation', 27 | 'join_function', 28 | 'line_after_namespace', 29 | 'linefeed', 30 | 'lowercase_keywords', 31 | 'parenthesis', 32 | 'multiple_use', 33 | 'method_argument_space', 34 | 'object_operator', 35 | 'php_closing_tag', 36 | 'psr0', 37 | 'remove_lines_between_uses', 38 | 'short_tag', 39 | 'standardize_not_equal', 40 | 'trailing_spaces', 41 | 'unused_use', 42 | 'visibility', 43 | 'whitespacy_lines', 44 | ) 45 | ); 46 | $config->finder($finder); 47 | return $config; 48 | -------------------------------------------------------------------------------- /assets/root-files/Code/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 36 | 37 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /assets/root-files/Code/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /assets/root-files/Config/README.md: -------------------------------------------------------------------------------- 1 | # zend-config 2 | 3 | `Zend\Config` is designed to simplify access to configuration data within 4 | applications. It provides a nested object property-based user interface for 5 | accessing this configuration data within application code. The configuration 6 | data may come from a variety of media supporting hierarchical data storage. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-code/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-code 11 | -------------------------------------------------------------------------------- /assets/root-files/Config/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Config/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /assets/root-files/Config/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /assets/root-files/Console/README.md: -------------------------------------------------------------------------------- 1 | # zend-console 2 | 3 | `Zend\Console` is a component to design and implement console applications in PHP. 4 | 5 | 6 | - File issues at https://github.com/zendframework/zend-console/issues 7 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-console 8 | -------------------------------------------------------------------------------- /assets/root-files/Console/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Console/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /assets/root-files/Console/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /assets/root-files/Crypt/README.md: -------------------------------------------------------------------------------- 1 | # zend-crypt 2 | 3 | `Zend\Crypt` provides support of some cryptographic tools. 4 | The available features are: 5 | 6 | - encrypt-then-authenticate using symmetric ciphers (the authentication step 7 | is provided using HMAC); 8 | - encrypt/decrypt using symmetric and public key algorithm (e.g. RSA algorithm); 9 | - generate digital sign using public key algorithm (e.g. RSA algorithm); 10 | - key exchange using the Diffie-Hellman method; 11 | - key derivation function (e.g. using PBKDF2 algorithm); 12 | - secure password hash (e.g. using Bcrypt algorithm); 13 | - generate Hash values; 14 | - generate HMAC values; 15 | 16 | The main scope of this component is to offer an easy and secure way to protect 17 | and authenticate sensitive data in PHP. 18 | 19 | 20 | - File issues at https://github.com/zendframework/zend-crypt/issues 21 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-crypt 22 | -------------------------------------------------------------------------------- /assets/root-files/Crypt/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Crypt/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 36 | 37 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /assets/root-files/Crypt/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /assets/root-files/Db/README.md: -------------------------------------------------------------------------------- 1 | # zend-db 2 | 3 | `Zend\Db` is a component that abstract the access to a Database using an object 4 | oriented API to build the queries. `Zend\Db` consumes different storage adapters 5 | to access different database vendors such as MySQL, PostreSQL, Oracle, IBM DB2, 6 | Microsoft Sql Server, PDO, etc. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-db/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-db 11 | -------------------------------------------------------------------------------- /assets/root-files/Db/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Debug/README.md: -------------------------------------------------------------------------------- 1 | # zend-debug 2 | 3 | `Zend\Debug` is a component that help the debugging of PHP applications. In 4 | particular it offers a static method `Zend\Debug\Debug::dump()` that prints or 5 | returns information about an expression. This simple technique of debugging is 6 | common because it is easy to use in an ad hoc fashion and requires no 7 | initialization, special tools, or debugging environment. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-debug/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-debug 12 | -------------------------------------------------------------------------------- /assets/root-files/Debug/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Debug/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Debug/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Di/README.md: -------------------------------------------------------------------------------- 1 | # zend-di 2 | 3 | `Zend\Di` is an example of an Inversion of Control (IoC) container. IoC containers 4 | are widely used to create object instances that have all dependencies resolved 5 | and injected. Dependency Injection containers are one form of IoC – but not the 6 | only form. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-di/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-di 11 | -------------------------------------------------------------------------------- /assets/root-files/Di/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Di/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Di/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Dom/README.md: -------------------------------------------------------------------------------- 1 | # zend-dom 2 | 3 | The `Zend\Dom` component provides tools for working with DOM documents and 4 | structures. Currently, we offer `Zend\Dom\Query`, which provides a unified 5 | interface for querying DOM documents utilizing both XPath and CSS selectors. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-dom/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-dom 10 | -------------------------------------------------------------------------------- /assets/root-files/Dom/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Dom/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Dom/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Escaper/README.md: -------------------------------------------------------------------------------- 1 | # zend-escaper 2 | 3 | The OWASP Top 10 web security risks study lists Cross-Site Scripting (XSS) in 4 | second place. PHP’s sole functionality against XSS is limited to two functions 5 | of which one is commonly misapplied. Thus, the `Zend\Escaper` component was written. 6 | It offers developers a way to escape output and defend from XSS and related 7 | vulnerabilities by introducing contextual escaping based on peer-reviewed rules. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-escaper/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-escaper 12 | -------------------------------------------------------------------------------- /assets/root-files/Escaper/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Escaper/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Escaper/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/EventManager/README.md: -------------------------------------------------------------------------------- 1 | # zend-eventmanager 2 | 3 | The `Zend\EventManager` is a component designed for the following use cases: 4 | 5 | - Implementing simple subject/observer patterns. 6 | - Implementing Aspect-Oriented designs. 7 | - Implementing event-driven architectures. 8 | 9 | The basic architecture allows you to attach and detach listeners to named events, 10 | both on a per-instance basis as well as via shared collections; trigger events; 11 | and interrupt execution of listeners. 12 | 13 | 14 | - File issues at https://github.com/zendframework/zend-eventmanager/issues 15 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-eventmanager 16 | -------------------------------------------------------------------------------- /assets/root-files/EventManager/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/EventManager/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/EventManager/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Feed/README.md: -------------------------------------------------------------------------------- 1 | # zend-feed 2 | 3 | `Zend\Feed` provides functionality for consuming RSS and Atom feeds. It provides 4 | a natural syntax for accessing elements of feeds, feed attributes, and entry 5 | attributes. `Zend\Feed` also has extensive support for modifying feed and entry 6 | structure with the same natural syntax, and turning the result back into XML. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-feed/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-feed 11 | -------------------------------------------------------------------------------- /assets/root-files/Feed/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Feed/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /assets/root-files/Feed/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /assets/root-files/File/README.md: -------------------------------------------------------------------------------- 1 | # zend-file 2 | 3 | `Zend\File` is a component used to manage file transfer and class autoloading. 4 | 5 | 6 | - File issues at https://github.com/zendframework/zend-file/issues 7 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-file 8 | -------------------------------------------------------------------------------- /assets/root-files/File/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/File/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/File/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Filter/README.md: -------------------------------------------------------------------------------- 1 | # zend-filter 2 | 3 | The `Zend\Filter` component provides a set of commonly needed data filters. It 4 | also provides a simple filter chaining mechanism by which multiple filters may 5 | be applied to a single datum in a user-defined order. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-filter/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-filter 10 | -------------------------------------------------------------------------------- /assets/root-files/Filter/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Filter/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /assets/root-files/Filter/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /assets/root-files/Form/README.md: -------------------------------------------------------------------------------- 1 | # zend-form 2 | 3 | The `Zend\Form` is intended primarily as a bridge between your domain models and 4 | the View Layer. It composes a thin layer of objects representing form elements, 5 | an InputFilter, and a small number of methods for binding data to and from the 6 | form and attached objects. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-form/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-form 11 | -------------------------------------------------------------------------------- /assets/root-files/Form/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Form/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 35 | 36 | 37 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /assets/root-files/Form/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 35 | 36 | 37 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /assets/root-files/Http/README.md: -------------------------------------------------------------------------------- 1 | # zend-http 2 | 3 | `Zend\Http` is a primary foundational component of Zend Framework. Since much of 4 | what PHP does is web-based, specifically HTTP, it makes sense to have a performant, 5 | extensible, concise and consistent API to do all things HTTP. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-http/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-http 10 | -------------------------------------------------------------------------------- /assets/root-files/Http/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/I18n/README.md: -------------------------------------------------------------------------------- 1 | # zend-i18n 2 | 3 | `Zend\I18n` comes with a complete translation suite which supports all major 4 | formats and includes popular features like plural translations and text domains. 5 | The Translator component is mostly dependency free, except for the fallback to a 6 | default locale, where it relies on the Intl PHP extension. 7 | 8 | The translator itself is initialized without any parameters, as any configuration 9 | to it is optional. A translator without any translations will actually do nothing 10 | but just return the given message IDs. 11 | 12 | - File issues at https://github.com/zendframework/zend-i18n/issues 13 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-i18n 14 | -------------------------------------------------------------------------------- /assets/root-files/I18n/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/I18n/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/I18n/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/InputFilter/README.md: -------------------------------------------------------------------------------- 1 | # zend-inputfilter 2 | 3 | The `Zend\InputFilter` component can be used to filter and validate generic sets 4 | of input data. For instance, you could use it to filter `$_GET` or `$_POST` 5 | values, CLI arguments, etc. 6 | 7 | - File issues at https://github.com/zendframework/zend-inputfilter/issues 8 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-inputfilter 9 | -------------------------------------------------------------------------------- /assets/root-files/InputFilter/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/InputFilter/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/InputFilter/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Json/README.md: -------------------------------------------------------------------------------- 1 | # zend-json 2 | 3 | `Zend\Json` provides convenience methods for serializing native PHP to JSON and 4 | decoding JSON to native PHP. For more information on JSON, visit the JSON 5 | [project site](http://www.json.org/). 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-json/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-json 10 | -------------------------------------------------------------------------------- /assets/root-files/Json/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Json/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Json/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2005-2015, Zend Technologies USA, Inc. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, 5 | are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, 8 | this list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | 14 | * Neither the name of Zend Technologies USA, Inc. nor the names of its 15 | contributors may be used to endorse or promote products derived from this 16 | software without specific prior written permission. 17 | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 19 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 20 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 21 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 22 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 23 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 24 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 25 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 27 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 | -------------------------------------------------------------------------------- /assets/root-files/Ldap/README.md: -------------------------------------------------------------------------------- 1 | # zend-ldap 2 | 3 | `Zend\Ldap\Ldap` is a class for performing LDAP operations including but not 4 | limited to binding, searching and modifying entries in an LDAP directory. 5 | 6 | 7 | - File issues at https://github.com/zendframework/zend-ldap/issues 8 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-ldap 9 | -------------------------------------------------------------------------------- /assets/root-files/Ldap/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Loader/README.md: -------------------------------------------------------------------------------- 1 | # zend-loader 2 | 3 | `Zend\Loader` provides different strategies for autoloading PHP classes. 4 | 5 | 6 | - File issues at https://github.com/zendframework/zend-loader/issues 7 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-loader 8 | -------------------------------------------------------------------------------- /assets/root-files/Loader/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Log/README.md: -------------------------------------------------------------------------------- 1 | # zend-log 2 | 3 | `Zend\Log` is a component for general purpose logging. It supports multiple log 4 | backends, formatting messages sent to the log, and filtering messages from being 5 | logged. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-log/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-log 10 | -------------------------------------------------------------------------------- /assets/root-files/Log/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Log/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Log/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Mail/README.md: -------------------------------------------------------------------------------- 1 | # zend-mail 2 | 3 | `Zend\Mail` provides generalized functionality to compose and send both text and 4 | MIME-compliant multipart email messages. Mail can be sent with `Zend\Mail` via 5 | the `Mail\Transport\Sendmail`, `Mail\Transport\Smtp` or the `Mail\Transport\File` 6 | transport. Of course, you can also implement your own transport by implementing 7 | the `Mail\Transport\TransportInterface`. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-mail/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-mail 12 | -------------------------------------------------------------------------------- /assets/root-files/Mail/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Math/README.md: -------------------------------------------------------------------------------- 1 | # zend-math 2 | 3 | `Zend\Math` provides general mathematical functions. So far the supported 4 | functionalities are: 5 | 6 | - `Zend\Math\Rand`, a random number generator; 7 | - `Zend\Math\BigInteger`, a library to manage big integers. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-math/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-math 12 | -------------------------------------------------------------------------------- /assets/root-files/Math/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Math/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Math/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Memory/README.md: -------------------------------------------------------------------------------- 1 | # zend-memory 2 | 3 | The `Zend\Memory` component is intended to manage data in an environment with 4 | limited memory. 5 | 6 | Memory objects (memory containers) are generated by memory manager by request 7 | and transparently swapped/loaded when it’s necessary. 8 | 9 | For example, if creating or loading a managed object would cause the total memory 10 | usage to exceed the limit you specify, some managed objects are copied to cache 11 | storage outside of memory. In this way, the total memory used by managed objects 12 | does not exceed the limit you need to enforce. 13 | 14 | 15 | - File issues at https://github.com/zendframework/zend-memory/issues 16 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-memory 17 | -------------------------------------------------------------------------------- /assets/root-files/Memory/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Memory/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Memory/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Mime/README.md: -------------------------------------------------------------------------------- 1 | # zend-mime 2 | 3 | `Zend\Mime` is a support class for handling multipart MIME messages. It is used 4 | by `Zend\Mail` and `Zend\Mime\Message` and may be used by applications requiring 5 | MIME support. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-mime/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-mime 10 | -------------------------------------------------------------------------------- /assets/root-files/Mime/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Mime/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Mime/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/ModuleManager/README.md: -------------------------------------------------------------------------------- 1 | # zend-modulemanager 2 | 3 | Zend Framework 2.0 introduces a new and powerful approach to modules. This new 4 | module system is designed with flexibility, simplicity, and re-usability in mind. 5 | A module may contain just about anything: PHP code, including MVC functionality; 6 | library code; view scripts; and/or public assets such as images, CSS, and 7 | JavaScript. The possibilities are endless. 8 | 9 | `Zend\ModuleManager` is the component that enables the design of a module 10 | architecture for PHP applcations. 11 | 12 | 13 | - File issues at https://github.com/zendframework/zend-modulemanager/issues 14 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-modulemanager 15 | -------------------------------------------------------------------------------- /assets/root-files/ModuleManager/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/ModuleManager/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/ModuleManager/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Mvc/README.md: -------------------------------------------------------------------------------- 1 | # zend-mvc 2 | 3 | `Zend\Mvc` is a brand new MVC implementation designed from the ground up for 4 | Zend Framework 2, focusing on performance and flexibility. 5 | 6 | The MVC layer is built on top of the following components: 7 | 8 | - `Zend\ServiceManager` - Zend Framework provides a set of default service 9 | definitions set up at `Zend\Mvc\Service`. The ServiceManager creates and 10 | configures your application instance and workflow. 11 | - `Zend\EventManager` - The MVC is event driven. This component is used 12 | everywhere from initial bootstrapping of the application, through returning 13 | response and request calls, to setting and retrieving routes and matched 14 | routes, as well as render views. 15 | - `Zend\Http` - specifically the request and response objects, used within: 16 | `Zend\Stdlib\DispatchableInterface`. All “controllers” are simply dispatchable 17 | objects. 18 | 19 | 20 | - File issues at https://github.com/zendframework/zend-mvc/issues 21 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-mvc 22 | -------------------------------------------------------------------------------- /assets/root-files/Mvc/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Mvc/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Mvc/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Navigation/README.md: -------------------------------------------------------------------------------- 1 | # zend-navigation 2 | 3 | `Zend\Navigation` is a component for managing trees of pointers to web pages. 4 | Simply put: It can be used for creating menus, breadcrumbs, links, and sitemaps, 5 | or serve as a model for other navigation related purposes. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-navigation/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-navigation 10 | -------------------------------------------------------------------------------- /assets/root-files/Navigation/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Navigation/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Navigation/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Paginator/README.md: -------------------------------------------------------------------------------- 1 | # zend-paginator 2 | 3 | `Zend\Paginator` is a flexible component for paginating collections of data and 4 | presenting that data to users. 5 | 6 | 7 | - File issues at https://github.com/zendframework/zend-paginator/issues 8 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-paginator 9 | -------------------------------------------------------------------------------- /assets/root-files/Paginator/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Paginator/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Paginator/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Permissions-Acl/README.md: -------------------------------------------------------------------------------- 1 | # zend-permissions-acl 2 | 3 | Provides a lightweight and flexible access control list (ACL) implementation for 4 | privileges management. 5 | 6 | - File issues at https://github.com/zendframework/zend-permissions-acl/issues 7 | - Documentation is at http://framework.zend.com/docs 8 | -------------------------------------------------------------------------------- /assets/root-files/Permissions-Acl/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Permissions-Rbac/README.md: -------------------------------------------------------------------------------- 1 | # zend-permissions-rbac 2 | 3 | Provides role-based access control (RBAC) permissions management. 4 | 5 | - File issues at https://github.com/zendframework/zend-permissions-rbac 6 | - Documentation is at http://framework.zend.com/docs 7 | -------------------------------------------------------------------------------- /assets/root-files/Permissions-Rbac/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/ProgressBar/README.md: -------------------------------------------------------------------------------- 1 | # zend-progressbar 2 | 3 | `Zend\ProgressBar` is a component to create and update progress bars in different 4 | environments. It consists of a single backend, which outputs the progress through 5 | one of the multiple adapters. On every update, it takes an absolute value and 6 | optionally a status message, and then calls the adapter with some precalculated 7 | values like percentage and estimated time left. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-progressbar/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-progressbar 12 | -------------------------------------------------------------------------------- /assets/root-files/ProgressBar/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/ProgressBar/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/ProgressBar/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/README-COMPONENT.md: -------------------------------------------------------------------------------- 1 | # zend-{COMPONENT} 2 | 3 | - File issues at https://github.com/zendframework/zend-{COMPONENT}/issues 4 | - Documentation is at http://framework.zend.com/docs 5 | -------------------------------------------------------------------------------- /assets/root-files/README.md: -------------------------------------------------------------------------------- 1 | root-files 2 | ========== 3 | 4 | In this directory are a number of files used to populate the root directory of 5 | the component. They include: 6 | 7 | - `LICENSE.txt`, the license for the component (BSD-3-Clause) 8 | - `coveralls.yml`, the configuration for coveralls.io. 9 | - `gitattributes`, the `.gitattributes` to use for the component. 10 | - `gitignore`, the `.gitignore` to use for the component. 11 | - `php_cs`, the `.php_cs` rules to use for the component. 12 | - `travis.yml`, the `.travis.yml` to use for the component. 13 | 14 | In most cases, you can use each of these as-is. In some cases, you will need to 15 | provide alternate `php_cs` and/or `travis.yml` files. To do so, copy them 16 | elsewhere, modify them, and provide them to `split-component.sh` using the `-s` 17 | and `-T` options, respctively. 18 | -------------------------------------------------------------------------------- /assets/root-files/Serializer/README.md: -------------------------------------------------------------------------------- 1 | # zend-serializer 2 | 3 | The `Zend\Serializer` component provides an adapter based interface to simply 4 | generate storable representation of PHP types by different facilities, and 5 | recover. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-serializer/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-serializer 10 | -------------------------------------------------------------------------------- /assets/root-files/Serializer/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Serializer/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Serializer/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Server/README.md: -------------------------------------------------------------------------------- 1 | # zend-server 2 | 3 | The `Zend\Server` family of classes provides functionality for the various server 4 | classes, including `Zend\XmlRpc\Server` and `Zend\Json\Server`. 5 | `Zend\Server\Server` provides an interface that mimics PHP 5’s SoapServer class; 6 | all server classes should implement this interface in order to provide a standard 7 | server API. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-server/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-server 12 | -------------------------------------------------------------------------------- /assets/root-files/Server/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Server/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Server/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/ServiceManager/README.md: -------------------------------------------------------------------------------- 1 | # zend-servicemanager 2 | 3 | The Service Locator design pattern is implemented by the `Zend\ServiceManager` 4 | component. The Service Locator is a service/object locator, tasked with 5 | retrieving other objects. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-servicemanager/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-servicemanager 10 | -------------------------------------------------------------------------------- /assets/root-files/ServiceManager/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/ServiceManager/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/ServiceManager/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Session/README.md: -------------------------------------------------------------------------------- 1 | # zend-session 2 | 3 | `Zend\Session` is a component to manage PHP session using an object oriented 4 | interface. 5 | 6 | 7 | - File issues at https://github.com/zendframework/zend-session/issues 8 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-session 9 | -------------------------------------------------------------------------------- /assets/root-files/Session/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Session/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Session/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Soap/README.md: -------------------------------------------------------------------------------- 1 | # zend-soap 2 | 3 | `Zend\Soap` is a component to manage the [SOAP](http://en.wikipedia.org/wiki/SOAP) 4 | protocol in order to design client or server PHP application. 5 | 6 | 7 | - File issues at https://github.com/zendframework/zend-soap/issues 8 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-soap 9 | -------------------------------------------------------------------------------- /assets/root-files/Soap/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Soap/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /assets/root-files/Soap/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /assets/root-files/Stdlib/README.md: -------------------------------------------------------------------------------- 1 | # zend-stdlib 2 | 3 | `Zend\Stdlib` is a set of components that implements general purpose utility 4 | class for different scopes like: 5 | 6 | - array utilities functions; 7 | - hydrators; 8 | - json serialazible interfaces; 9 | - general messaging systems; 10 | - strin wrappers; 11 | - etc 12 | 13 | 14 | - File issues at https://github.com/zendframework/zend-stdlib/issues 15 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-stdlib 16 | -------------------------------------------------------------------------------- /assets/root-files/Stdlib/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Stdlib/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Stdlib/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Tag/README.md: -------------------------------------------------------------------------------- 1 | # zend-tag 2 | 3 | `Zend\Tag` is a component suite which provides a facility to work with taggable 4 | Items. As its base, it provides two classes to work with Tags, `Zend\Tag\Item` 5 | and `Zend\Tag\ItemList`. Additionally, it comes with the interface 6 | `Zend\Tag\TaggableInterface`, which allows you to use any of your models as a 7 | taggable item in conjunction with `Zend\Tag`. 8 | 9 | 10 | - File issues at https://github.com/zendframework/zend-tag/issues 11 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-tag 12 | -------------------------------------------------------------------------------- /assets/root-files/Tag/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Tag/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Tag/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Test/README.md: -------------------------------------------------------------------------------- 1 | # zend-test 2 | 3 | The `Zend\Test` component provides tools to facilitate unit testing of your Zend 4 | Framework applications. At this time, we offer facilities to enable testing of 5 | your Zend Framework MVC applications. [PHPUnit](https://phpunit.de/) is the only 6 | library supported currently. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-test/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-test 11 | -------------------------------------------------------------------------------- /assets/root-files/Test/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Test/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Test/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Text/README.md: -------------------------------------------------------------------------------- 1 | # zend-text 2 | 3 | `Zend\Text` is a component to work on text strings. It contains the subcomponents: 4 | 5 | - `Zend\Text\Figlet` that enables developers to create a so called FIGlet text. 6 | A FIGlet text is a string, which is represented as ASCII art. FIGlets use a 7 | special font format, called FLT (FigLet Font). By default, one standard font is 8 | shipped with `Zend\Text\Figlet`, but you can download additional fonts [here]( http://www.figlet.org) 9 | - `Zend\Text\Table` to create text based tables on the fly with different 10 | decorators. This can be helpful, if you either want to send structured data in 11 | text emails, which are used to have mono-spaced fonts, or to display table 12 | information in a CLI application. `Zend\Text\Table` supports multi-line 13 | columns, colspan and align as well. 14 | 15 | 16 | - File issues at https://github.com/zendframework/zend-text/issues 17 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-text 18 | -------------------------------------------------------------------------------- /assets/root-files/Text/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Text/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Text/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/Uri/README.md: -------------------------------------------------------------------------------- 1 | # zend-uri 2 | 3 | `Zend\Uri` is a component that aids in manipulating and validating Uniform 4 | Resource Identifiers ([URIs](http://www.ietf.org/rfc/rfc3986.txt)). `Zend\Uri` 5 | exists primarily to service other components, such as `Zend\Http`, but is also 6 | useful as a standalone utility. 7 | 8 | 9 | - File issues at https://github.com/zendframework/zend-uri/issues 10 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-uri 11 | -------------------------------------------------------------------------------- /assets/root-files/Uri/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Uri/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /assets/root-files/Uri/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /assets/root-files/Validator/README.md: -------------------------------------------------------------------------------- 1 | # zend-validator 2 | 3 | The `Zend\Validator` component provides a set of commonly needed validators. It 4 | also provides a simple validator chaining mechanism by which multiple validators 5 | may be applied to a single datum in a user-defined order. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-validator/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-validator 10 | -------------------------------------------------------------------------------- /assets/root-files/Validator/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Validator/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Validator/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Version/README.md: -------------------------------------------------------------------------------- 1 | # zend-version 2 | 3 | `Zend\Version` provides a class constant `Zend\Version\Version::VERSION` that 4 | contains a string identifying the version number of your Zend Framework 5 | installation. `Zend\Version\Version::VERSION` might contain “2.4.1”, for example. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-version/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-version 10 | -------------------------------------------------------------------------------- /assets/root-files/Version/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/Version/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/Version/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /assets/root-files/View/README.md: -------------------------------------------------------------------------------- 1 | # zend-view 2 | 3 | `Zend\View` provides the “View” layer of Zend Framework 2’s MVC system. It is a 4 | multi-tiered system allowing a variety of mechanisms for extension, 5 | substitution, and more. 6 | 7 | 8 | - File issues at https://github.com/zendframework/zend-view/issues 9 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-view 10 | -------------------------------------------------------------------------------- /assets/root-files/View/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/View/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/View/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/XmlRpc/README.md: -------------------------------------------------------------------------------- 1 | # zend-xmlrpc 2 | 3 | From its home page, XML-RPC is described as a ”...remote procedure calling using 4 | HTTP as the transport and XML as the encoding. XML-RPC is designed to be as 5 | simple as possible, while allowing complex data structures to be transmitted, 6 | processed and returned.” 7 | 8 | `Zend\XmlRpc` provides support for both consuming remote XML-RPC services and 9 | building new XML-RPC servers. 10 | 11 | 12 | - File issues at https://github.com/zendframework/zend-xmlrpc/issues 13 | - Documentation is at http://framework.zend.com/manual/current/en/index.html#zend-xmlrpc 14 | -------------------------------------------------------------------------------- /assets/root-files/XmlRpc/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/XmlRpc/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/XmlRpc/phpunit.xml.travis: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | ./test/ 9 | 10 | 11 | 12 | 13 | 14 | disable 15 | 16 | 17 | 18 | 19 | 20 | ./src 21 | 22 | 23 | 24 | 25 | 26 | 27 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /assets/root-files/coveralls.yml: -------------------------------------------------------------------------------- 1 | coverage_clover: clover.xml 2 | json_path: coveralls-upload.json 3 | src_dir: src 4 | -------------------------------------------------------------------------------- /assets/root-files/gitattributes: -------------------------------------------------------------------------------- 1 | /test export-ignore 2 | /vendor export-ignore 3 | .gitattributes export-ignore 4 | .gitignore export-ignore 5 | .travis.yml export-ignore 6 | .php_cs export-ignore 7 | -------------------------------------------------------------------------------- /assets/root-files/gitignore: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .DS_Store 3 | .idea 4 | .project 5 | .settings/ 6 | .*.sw* 7 | .*.un~ 8 | nbproject 9 | tmp/ 10 | 11 | clover.xml 12 | coveralls-upload.json 13 | phpunit.xml 14 | vendor 15 | -------------------------------------------------------------------------------- /assets/root-files/php_cs: -------------------------------------------------------------------------------- 1 | notPath('TestAsset') 4 | ->notPath('_files') 5 | ->filter(function (SplFileInfo $file) { 6 | if (strstr($file->getPath(), 'compatibility')) { 7 | return false; 8 | } 9 | }); 10 | $config = Symfony\CS\Config\Config::create(); 11 | $config->level(null); 12 | $config->fixers( 13 | array( 14 | 'braces', 15 | 'duplicate_semicolon', 16 | 'elseif', 17 | 'empty_return', 18 | 'encoding', 19 | 'eof_ending', 20 | 'function_call_space', 21 | 'function_declaration', 22 | 'indentation', 23 | 'join_function', 24 | 'line_after_namespace', 25 | 'linefeed', 26 | 'lowercase_keywords', 27 | 'parenthesis', 28 | 'multiple_use', 29 | 'method_argument_space', 30 | 'object_operator', 31 | 'php_closing_tag', 32 | 'psr0', 33 | 'remove_lines_between_uses', 34 | 'short_tag', 35 | 'standardize_not_equal', 36 | 'trailing_spaces', 37 | 'unused_use', 38 | 'visibility', 39 | 'whitespacy_lines', 40 | ) 41 | ); 42 | $config->finder($finder); 43 | return $config; 44 | -------------------------------------------------------------------------------- /assets/root-files/travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: php 4 | 5 | matrix: 6 | fast_finish: true 7 | include: 8 | - php: 5.5 9 | - php: 5.6 10 | env: 11 | - EXECUTE_TEST_COVERALLS=true 12 | - EXECUTE_CS_CHECK=true 13 | - php: 7 14 | - php: hhvm 15 | allow_failures: 16 | - php: 7 17 | - php: hhvm 18 | 19 | notifications: 20 | irc: "irc.freenode.org#zftalk.dev" 21 | email: false 22 | 23 | before_install: 24 | - if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi 25 | 26 | install: 27 | - composer install --no-interaction --prefer-source 28 | 29 | script: 30 | - if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/phpunit -c phpunit.xml.travis --coverage-clover clover.xml ; fi 31 | - if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then ./vendor/bin/phpunit -c phpunit.xml.travis ; fi 32 | - if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/php-cs-fixer fix -v --diff --dry-run --config-file=.php_cs ; fi 33 | 34 | after_script: 35 | - if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/coveralls ; fi 36 | -------------------------------------------------------------------------------- /assets/test-files/README.md: -------------------------------------------------------------------------------- 1 | test-files 2 | ========== 3 | 4 | This directory contains assets for the `test/` directory of a component. They 5 | include: 6 | 7 | - `gitignore`, the files under the `test/` tree to ignore 8 | - `Bootstrap.php`, the test bootstrap. This file is templated, and will be 9 | updated with the component name in the file docblock and in error messages. 10 | - `phpunit.xml.dist`, the basic PHPUnit configuration; if this version does not 11 | work for the given component, create a new one, and specify your version in 12 | using the `-c` option to `split-component.sh`. 13 | 14 | The directory also contains two files that you will need to copy, edit, and 15 | provide to `split-component.sh`: 16 | 17 | - `TestConfiguration.php.dist`, which should contain the component-specific test 18 | configuration options. Some options are marked global, and should always be 19 | used; anything else unrelated to your component should be removed. Provide the 20 | updated file to `split-component.sh` via the `-t` option. 21 | - `TestConfiguration.php.travis`, which contains the configuration options to be 22 | used when run under the Travis-CI environment. Again, remove any that are 23 | not marked global, and/or which are irrelevant to the component. Provide the 24 | updated file to `split-component.sh` via the `-i` option. 25 | -------------------------------------------------------------------------------- /assets/test-files/bootstrap.php: -------------------------------------------------------------------------------- 1 |