PluginProbe ʕ •ᴥ•ʔ
Custom Post Type Permalinks / 3.1.4
Custom Post Type Permalinks v3.1.4
1.2.0 1.3.0 1.3.1 1.4.0 1.5.1 1.5.2 1.5.4 2.0.0 2.0.1 2.0.2 2.1.1 2.1.2 2.1.3 2.2.0 3.0.0 3.0.1 3.1.0 3.1.1 3.1.3 3.1.4 3.1.5 3.2.0 3.2.1 3.2.2 3.3.0 3.3.1 3.3.4 3.3.5 3.4.0 3.4.0-rc.1 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.5.2 3.5.3 3.5.4 3.5.5 trunk 0.6 0.6.1 0.6.2 0.7 0.7.1 0.7.10 0.7.2 0.7.2.1 0.7.3 0.7.3.1 0.7.4 0.7.4.1 0.7.5 0.7.5.1 0.7.5.2 0.7.5.6 0.7.6 0.7.8 0.7.9 0.7.9.1 0.7.9.2 0.8 0.8.1 0.8.6 0.8.7 0.8.7.1 0.8.7.5 0.8.7.6 0.9 0.9.1 0.9.2.1 0.9.3.1 0.9.3.2 0.9.3.3 0.9.5 0.9.5.1 0.9.5.2 0.9.5.3 0.9.5.4 0.9.5.6 0.9.6 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0
custom-post-type-permalinks / circle.yml
custom-post-type-permalinks Last commit date
CPTP 8 years ago assets 8 years ago language 8 years ago .svnignore 8 years ago CONTRIBUTING.md 9 years ago CPTP.php 8 years ago LICENSE 9 years ago circle.yml 8 years ago codesniffer.ruleset.xml 8 years ago composer.json 8 years ago custom-post-type-permalinks.php 8 years ago readme.md 8 years ago readme.txt 8 years ago screenshot-1.png 14 years ago
circle.yml
26 lines
1 ## Customize the test machine
2 machine:
3 php:
4 version: 7.0.0
5 # Override /etc/hosts
6
7 # Add some environment variables
8 environment:
9 CIRCLE_ENV: test
10 WP_VERSION: trunk
11
12 ## Customize dependencies
13 dependencies:
14 pre:
15 - sudo apt-get update; sudo apt-get install subversion
16 - bash bin/install-wp-tests.sh wordpress_test ubuntu '' 127.0.0.1 $WP_VERSION
17 - composer install
18
19 ## Customize test commands
20 test:
21 override:
22 - phpunit
23 - composer phpcs
24
25
26