forked from loafle/openapi-generator-original
		
	* support symfony6 * fix issues with StrictJsonDeserialization * regenerate samples * add suggestions * update samples * support php 7.4 and symfony 5 * allow versions based on semantic versioning * regenerate sample * change method of determining result types * update samples * describe usage of bundle in symfony app * better documentation * fix duplicate auth methods * do not set namespace for default types * fix UploadedFile type * next try fixing auth * regenerate samples * fix: auth method shall not be duplicated * Revert "fix duplicate auth methods" This reverts commit 0dc418737b1379a30b7f22e7937819ba965c9ddb. * chore: regenerate samples * fix tests * regenerate sample * more fixes for tests * update tests * add kernel shutdown Co-authored-by: Benjamin Haeublein <benjaminh@testing-vm.lan.benjaminh.de> Co-authored-by: Renaud de Chivré <renaud@tahitiwebdesign.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			548 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			548 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: php
 | 
						|
dist: trusty
 | 
						|
php:
 | 
						|
    - 8.1.1
 | 
						|
 | 
						|
install:
 | 
						|
  - composer install --dev --no-interaction
 | 
						|
script:
 | 
						|
  - mkdir -p report/logs
 | 
						|
  - php vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover=report/logs/clover.xml
 | 
						|
  - php vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no
 | 
						|
 | 
						|
before_script:
 | 
						|
  - composer require --dev php-coveralls/php-coveralls --no-interaction
 | 
						|
 | 
						|
after_success:
 | 
						|
  - travis_retry php vendor/bin/php-coveralls
 | 
						|
  # or enable logging
 | 
						|
  - travis_retry php vendor/bin/php-coveralls -v
 |